FastGithub/FastGithub.Configuration/ResponseConfig.cs
xingyuan55 4d9d97f871 start
2022-11-16 08:01:03 +08:00

24 lines
536 B
C#

namespace FastGithub.Configuration
{
/// <summary>
/// 响应配置
/// </summary>
public record ResponseConfig
{
/// <summary>
/// 状态码
/// </summary>
public int StatusCode { get; init; } = 200;
/// <summary>
/// 内容类型
/// </summary>
public string ContentType { get; init; } = "text/plain;charset=utf-8";
/// <summary>
/// 内容的值
/// </summary>
public string? ContentValue { get; init; }
}
}