using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /card/code/checkcode 接口的请求。 /// public class CardCodeCheckCodeRequest : WechatApiRequest, IMapResponse { /// /// 获取或设置卡券模板编号。 /// [Newtonsoft.Json.JsonProperty("card_id")] [System.Text.Json.Serialization.JsonPropertyName("card_id")] public string CardId { get; set; } = string.Empty; /// /// 获取或设置卡券 Code 列表。 /// [Newtonsoft.Json.JsonProperty("code")] [System.Text.Json.Serialization.JsonPropertyName("code")] public IList CardCodeList { get; set; } = new List(); } }