mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 10:38:10 +08:00
19 lines
586 B
C#
19 lines
586 B
C#
using System;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /merchant/express/add 接口的响应。</para>
|
|
/// </summary>
|
|
[Obsolete("相关接口或字段于 2020-10-01 下线。")]
|
|
public class MerchantExpressAddResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置邮费模板 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("template_id")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("template_id")]
|
|
public int TemplateId { get; set; }
|
|
}
|
|
}
|