mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-18 04:33:16 +08:00
25 lines
901 B
C#
25 lines
901 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /card/code/checkcode 接口的请求。</para>
|
|
/// </summary>
|
|
public class CardCodeCheckCodeRequest : WechatApiRequest, IMapResponse<CardCodeCheckCodeRequest, CardCodeCheckCodeResponse>
|
|
{
|
|
/// <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>();
|
|
}
|
|
}
|