mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 05:13:17 +08:00
23 lines
834 B
C#
23 lines
834 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|