18 lines
428 B
C#
18 lines
428 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandIndirectImageUploadResponse.
|
|
/// </summary>
|
|
public class AntMerchantExpandIndirectImageUploadResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 图片在文件存储平台的标识
|
|
/// </summary>
|
|
[XmlElement("image_id")]
|
|
public string ImageId { get; set; }
|
|
}
|
|
}
|