2022-01-14 14:37:52 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-05-28 19:23:28 +08:00
|
|
|
|
|
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /card/code/checkcode 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-02-28 19:14:08 +08:00
|
|
|
|
public class CardCodeCheckCodeRequest : WechatApiRequest, IMapResponse<CardCodeCheckCodeRequest, CardCodeCheckCodeResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置卡券模板编号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("card_id")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("card_id")]
|
|
|
|
|
public string CardId { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置卡券 Code 列表。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("code")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("code")]
|
|
|
|
|
public IList<string> CardCodeList { get; set; } = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|