using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ItemUrl Data Structure. /// [Serializable] public class ItemUrl : AopObject { /// /// 地址类型;可选值: SC_MINI_APP(支付宝小程序) /// [XmlElement("type")] public string Type { get; set; } /// /// 商品详情地址 /// [XmlElement("url")] public string Url { get; set; } } }