mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-16 16:50:43 +08:00
16 lines
578 B
C#
16 lines
578 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /card/giftcard/page/get 接口的请求。</para>
|
|
/// </summary>
|
|
public class CardGiftCardPageGetRequest : WechatApiRequest, IInferable<CardGiftCardPageGetRequest, CardGiftCardPageGetResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置货架 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("page_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("page_id")]
|
|
public string PageId { get; set; } = string.Empty;
|
|
}
|
|
}
|