using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ContentInfoModel Data Structure. /// [Serializable] public class ContentInfoModel : AopObject { /// /// 展台 /// [XmlElement("booth")] public string Booth { get; set; } /// /// 内容id 加密串 /// [XmlElement("content_id_str")] public string ContentIdStr { get; set; } /// /// 扩展信息列表 /// [XmlElement("ext_info")] public ContentExtInfoModel ExtInfo { get; set; } /// /// 内容跳转地址 /// [XmlElement("link_url")] public string LinkUrl { get; set; } /// /// 内容对应的图片 logo /// [XmlElement("logo")] public string Logo { get; set; } /// /// 权益领取状态: noReceive ( 未领取 ) received ( 已领取 ) todayEnded ( 暂时缺货 ) ended ( 已抢光 ) stoped ( 已结束) notBegin ( 未开始 ) /// [XmlElement("receive_status")] public string ReceiveStatus { get; set; } /// /// 场景 /// [XmlElement("scene")] public string Scene { get; set; } /// /// 内容副标题 /// [XmlElement("sub_title")] public string SubTitle { get; set; } /// /// 内容主标题 /// [XmlElement("title")] public string Title { get; set; } /// /// 阵地 /// [XmlElement("touch_point")] public string TouchPoint { get; set; } } }