2025-08-28 15:20:15 +08:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
2025-08-27 23:42:46 +08:00
|
|
|
namespace Yi.Framework.AiHub.Domain.Managers.Fuwuhao;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 二维码响应对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class QrCodeResponse
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 二维码票据
|
|
|
|
|
/// </summary>
|
2025-08-28 15:20:15 +08:00
|
|
|
[JsonPropertyName("ticket")]
|
2025-08-27 23:42:46 +08:00
|
|
|
public string Ticket { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 过期时间(秒)
|
|
|
|
|
/// </summary>
|
2025-08-28 15:20:15 +08:00
|
|
|
[JsonPropertyName("expire_seconds")]
|
2025-08-27 23:42:46 +08:00
|
|
|
public int ExpireSeconds { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 二维码URL
|
|
|
|
|
/// </summary>
|
2025-08-28 15:20:15 +08:00
|
|
|
[JsonPropertyName("url")]
|
2025-08-27 23:42:46 +08:00
|
|
|
public string Url { get; set; }
|
|
|
|
|
}
|