16 lines
355 B
C#
16 lines
355 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ZhimaMerchantDataUploadInitializeResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class ZhimaMerchantDataUploadInitializeResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 行业模板
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("template_url")]
|
||
|
|
public string TemplateUrl { get; set; }
|
||
|
|
}
|
||
|
|
}
|