namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
///
/// 表示 [POST] /card/giftcard/page/get 接口的请求。
///
public class CardGiftCardPageGetRequest : WechatApiRequest, IInferable
{
///
/// 获取或设置货架 ID。
///
[Newtonsoft.Json.JsonProperty("page_id")]
[System.Text.Json.Serialization.JsonPropertyName("page_id")]
public string PageId { get; set; } = string.Empty;
}
}