mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 04:53:46 +08:00
30 lines
1.0 KiB
C#
30 lines
1.0 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/midas/pay 接口的响应。</para>
|
|
/// </summary>
|
|
public class CgibinMidasPayResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置订单号。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("bill_no")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("bill_no")]
|
|
public string BillNumber { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置预扣后的余额。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("balance")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("balance")]
|
|
public int Balance { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置本次扣的赠送币的金额。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("used_gen_amt")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("used_gen_amt")]
|
|
public int UsedGenAmount { get; set; }
|
|
}
|
|
}
|