mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
16 lines
579 B
C#
16 lines
579 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /donut/unregisteruser 接口的请求。</para>
|
|
/// </summary>
|
|
public class DonutUnregisterUserRequest : WechatApiRequest, IInferable<DonutUnregisterUserRequest, DonutUnregisterUserResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置多端用户 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("user_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("user_id")]
|
|
public string UserId { get; set; } = string.Empty;
|
|
}
|
|
}
|