using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ImageTextItem Data Structure. /// [Serializable] public class ImageTextItem : AopObject { /// /// 描述 /// [XmlElement("desc")] public string Desc { get; set; } /// /// 封面图链接 /// [XmlElement("image_url")] public string ImageUrl { get; set; } /// /// 文章内容id /// [XmlElement("msg_id")] public string MsgId { get; set; } /// /// 标题 /// [XmlElement("title")] public string Title { get; set; } /// /// 跳转链接 /// [XmlElement("url")] public string Url { get; set; } } }