using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// SceneContent Data Structure. /// [Serializable] public class SceneContent : AopObject { /// /// 文章分类 /// [XmlElement("article_classify")] public long ArticleClassify { get; set; } /// /// 文章作者 /// [XmlElement("author")] public string Author { get; set; } /// /// 文章id /// [XmlElement("content_id")] public string ContentId { get; set; } /// /// 文章封面图片 /// [XmlElement("cover")] public string Cover { get; set; } /// /// 文章图片列表 /// [XmlArray("image_list")] [XmlArrayItem("string")] public List ImageList { get; set; } /// /// 生活号id /// [XmlElement("public_id")] public string PublicId { get; set; } /// /// public_name为生活号名称,属于公开信息,无需脱敏 /// [XmlElement("public_name")] public string PublicName { get; set; } /// /// 跳转链接 /// [XmlElement("scheme")] public string Scheme { get; set; } /// /// 推荐埋点 /// [XmlElement("scm")] public string Scm { get; set; } /// /// 文章摘要 /// [XmlElement("summary")] public string Summary { get; set; } /// /// 文章标题 /// [XmlElement("title")] public string Title { get; set; } /// /// 文章点赞数 /// [XmlElement("total_praise_count")] public long TotalPraiseCount { get; set; } /// /// 文章回复数 /// [XmlElement("total_reply_count")] public long TotalReplyCount { get; set; } /// /// 文章阅读数 /// [XmlElement("total_view_count")] public long TotalViewCount { get; set; } /// /// 文章类型 /// [XmlElement("type")] public string Type { get; set; } } }