DotNetCore.SKIT.FlurlHttpCl.../src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetCustomizedAuthUrlResponse.cs

23 lines
834 B
C#
Raw Normal View History

namespace SKIT.FlurlHttpClient.Wechat.Work.Models
{
/// <summary>
/// <para>表示 [POST] /cgi-bin/service/get_customized_auth_url 接口的响应。</para>
/// </summary>
public class CgibinServiceGetCustomizedAuthUrlResponse : WechatWorkResponse
{
/// <summary>
/// 获取或设置二维码 URL。
/// </summary>
[Newtonsoft.Json.JsonProperty("qrcode_url")]
[System.Text.Json.Serialization.JsonPropertyName("qrcode_url")]
public string QrcodeUrl { get; set; } = default!;
/// <summary>
/// 获取或设置二维码有效期(单位:秒)。
/// </summary>
[Newtonsoft.Json.JsonProperty("expires_in")]
[System.Text.Json.Serialization.JsonPropertyName("expires_in")]
public int ExpiresIn { get; set; }
}
}