Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceCityfacilitatorScriptQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

22 lines
546 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayCommerceCityfacilitatorScriptQueryResponse.
/// </summary>
public class AlipayCommerceCityfacilitatorScriptQueryResponse : AopResponse
{
/// <summary>
/// 脚本内容,智能卡中心自定义的脚本格式内容
/// </summary>
[JsonProperty("content")]
public string Content { get; set; }
/// <summary>
/// 脚本更新时间
/// </summary>
[JsonProperty("gmt_modified")]
public string GmtModified { get; set; }
}
}