chore: 提交被 git 误忽略的文件

This commit is contained in:
Fu Diwei
2021-08-04 13:55:46 +08:00
parent 86e6215c0e
commit 7186b1e513
10 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /merchant/express/update 接口的请求。</para>
/// </summary>
public class MerchantExpressUpdateRequest : WechatApiRequest
{
public static class Types
{
public class Template : MerchantExpressAddRequest.Types.Template
{
}
}
/// <summary>
/// 获取或设置邮费模板 ID。
/// </summary>
[Newtonsoft.Json.JsonProperty("template_id")]
[System.Text.Json.Serialization.JsonPropertyName("template_id")]
public int TemplateId { get; set; }
/// <summary>
/// 获取或设置邮费模板信息。
/// </summary>
[Newtonsoft.Json.JsonProperty("delivery_template")]
[System.Text.Json.Serialization.JsonPropertyName("delivery_template")]
public Types.Template Template { get; set; } = new Types.Template();
}
}