mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 13:03:43 +08:00
17 lines
634 B
C#
17 lines
634 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /card/giftcard/page/add 接口的响应。</para>
|
|
/// </summary>
|
|
public class CardGiftCardPageAddResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置货架 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("page_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("page_id")]
|
|
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalStringConverter))]
|
|
public string PageId { get; set; } = default!;
|
|
}
|
|
}
|