mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
16 lines
612 B
C#
16 lines
612 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /new-tax-control-fapiao/fapiao-applications/upload-fapiao-file 接口的响应。</para>
|
|
/// </summary>
|
|
public class UploadNewTaxControlFapiaoApplicationFapiaoFileResponse : WechatTenpayResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置发票文件 MediaId。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("fapiao_media_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("fapiao_media_id")]
|
|
public string FapiaoMediaId { get; set; } = default!;
|
|
}
|
|
}
|