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