mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-29 18:04:42 +08:00
19 lines
583 B
C#
19 lines
583 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /profitsharing/merchant-configs/{sub_mchid} 接口的请求。</para>
|
|
/// </summary>
|
|
public class GetProfitSharingMerchantConfigsRequest : WechatTenpayRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置微信子商户号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public string SubMerchantId { get; set; } = string.Empty;
|
|
}
|
|
}
|