19 lines
429 B
C#
19 lines
429 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// Image Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class Image : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 图片url,请先调用alipay.offline.material.image.upload 图片上传接口获得图片url
|
||
/// </summary>
|
||
[XmlElement("url")]
|
||
public string Url { get; set; }
|
||
}
|
||
}
|