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