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