FastGithub/FastGithub.Core/ResponseConfig.cs
2021-07-18 12:24:54 +08:00

24 lines
522 B
C#

namespace FastGithub
{
/// <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; }
}
}