You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
689 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOfflineMaterialImageUploadResponse.
/// </summary>
public class AlipayOfflineMaterialImageUploadResponse : AopResponse
{
/// <summary>
/// 图片/视频在商家中心的唯一标识
/// </summary>
[XmlElement("image_id")]
public string ImageId { get; set; }
/// <summary>
/// 图片/视频的访问地址(为了防止盗链,该地址不允许嵌在其他页面展示,只能在新页面展示)
/// </summary>
[XmlElement("image_url")]
public string ImageUrl { get; set; }
}
}