using System.Text.Json.Serialization; namespace Yi.Framework.AiHub.Domain.Managers.Fuwuhao; /// /// 二维码响应对象 /// public class QrCodeResponse { /// /// 二维码票据 /// [JsonPropertyName("ticket")] public string Ticket { get; set; } /// /// 过期时间(秒) /// [JsonPropertyName("expire_seconds")] public int ExpireSeconds { get; set; } /// /// 二维码URL /// [JsonPropertyName("url")] public string Url { get; set; } }