Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOfflineMaterialImageDownloadResponse.cs

18 lines
481 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
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; }
}
}