using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayOfflineMaterialImageDownloadResponse. /// public class AlipayOfflineMaterialImageDownloadResponse : AopResponse { /// /// 图片地址列表,按入参id顺序返回,如果某个id转化失败,则用空字符占位 /// [XmlArray("image_urls")] [XmlArrayItem("string")] public List ImageUrls { get; set; } } }