31 lines
724 B
C#
31 lines
724 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AttachmentInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AttachmentInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 支付宝返回的图片在文件存储平台的标识
|
|
/// </summary>
|
|
[XmlElement("atta_url")]
|
|
public string AttaUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件类型,PROMO_PIC:营销物料照
|
|
/// </summary>
|
|
[XmlElement("type")]
|
|
public string Type { get; set; }
|
|
}
|
|
}
|