1234567891011121314151617 |
- 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; }
- }
- }
|