mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 01:46:20 +08:00
19 lines
638 B
C#
19 lines
638 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /merchant/shelf/del 接口的请求。</para>
|
|
/// </summary>
|
|
[Obsolete("相关接口或字段于 2020-10-01 下线。")]
|
|
public class MerchantShelfDeleteRequest : WechatApiRequest, IInferable<MerchantShelfDeleteRequest, MerchantShelfDeleteResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置货架 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("shelf_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("shelf_id")]
|
|
public long ShelfId { get; set; }
|
|
}
|
|
}
|