namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Models { /// /// 表示 [POST] /sign/{TOKEN} 接口的响应。 /// public class SignResponse : WechatOpenAIResponse { /// /// 获取或设置请求签名。 /// [Newtonsoft.Json.JsonProperty("signature")] [System.Text.Json.Serialization.JsonPropertyName("signature")] public string Signature { get; set; } = default!; /// /// 获取或设置有效期(单位:秒)。 /// [Newtonsoft.Json.JsonProperty("expiresIn")] [System.Text.Json.Serialization.JsonPropertyName("expiresIn")] public int ExpiresIn { get; set; } } }