namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [GET] /donut/code2verifyinfo 接口的请求。 /// public class DonutCode2VerifyInfoRequest : WechatApiRequest, IInferable { /// /// 获取或设置临时登录凭证。 /// [Newtonsoft.Json.JsonIgnore] [System.Text.Json.Serialization.JsonIgnore] public string Code { get; set; } = string.Empty; /// /// (使用默认值即可,无需修改) /// [Newtonsoft.Json.JsonIgnore] [System.Text.Json.Serialization.JsonIgnore] public string GrantType { get; set; } = "authorization_code"; } }