mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
16 lines
590 B
C#
16 lines
590 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /card/submerchant/get 接口的请求。</para>
|
|
/// </summary>
|
|
public class CardSubMerchantGetRequest : WechatApiRequest, IMapResponse<CardSubMerchantGetRequest, CardSubMerchantGetResponse>
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置子商户 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("merchant_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("merchant_id")]
|
|
public string MerchantId { get; set; } = string.Empty;
|
|
}
|
|
}
|