Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AntMerchantExpandImageUploadResponse.cs

16 lines
349 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AntMerchantExpandImageUploadResponse.
/// </summary>
public class AntMerchantExpandImageUploadResponse : AopResponse
{
/// <summary>
/// 图片在sfs中的标识
/// </summary>
[JsonProperty("image_id")]
public string ImageId { get; set; }
}
}