mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
23 lines
820 B
C#
23 lines
820 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /donut/code2verifyinfo 接口的请求。</para>
|
|
/// </summary>
|
|
public class DonutCode2VerifyInfoRequest : WechatApiRequest, IInferable<DonutCode2VerifyInfoRequest, DonutCode2VerifyInfoResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置临时登录凭证。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string Code { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// <i>(使用默认值即可,无需修改)</i>
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string GrantType { get; set; } = "authorization_code";
|
|
}
|
|
}
|