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