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