mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
16 lines
537 B
C#
16 lines
537 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /card/get 接口的请求。</para>
|
|
/// </summary>
|
|
public class CardGetRequest : WechatApiRequest, IInferable<CardGetRequest, CardGetResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置卡券模板编号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("card_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("card_id")]
|
|
public string CardId { get; set; } = string.Empty;
|
|
}
|
|
}
|