namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /tcb/getvoipsign 接口的响应。 /// public class TCBGetVoIPSignResponse : WechatApiResponse { /// /// 获取或设置签名。 /// [Newtonsoft.Json.JsonProperty("signature")] [System.Text.Json.Serialization.JsonPropertyName("signature")] public string Signature { get; set; } = default!; } }