using System; using System.Xml.Serialization; namespace Top.Api.Domain { /// /// PropImg Data Structure. /// [Serializable] public class PropImg : TopObject { /// /// 图片创建时间 时间格式:yyyy-MM-dd HH:mm:ss /// [XmlElement("created")] public string Created { get; set; } /// /// 属性图片的id,和商品相对应 /// [XmlElement("id")] public long Id { get; set; } /// /// 图片放在第几张(多图时可设置) /// [XmlElement("position")] public long Position { get; set; } /// /// 图片所对应的属性组合的字符串 /// [XmlElement("properties")] public string Properties { get; set; } /// /// 图片链接地址 /// [XmlElement("url")] public string Url { get; set; } } }