using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CountInfo Data Structure. /// [Serializable] public class CountInfo : AopObject { /// /// 飞猪内容id /// [XmlElement("content_id")] public string ContentId { get; set; } /// /// 点赞数 /// [XmlElement("support_count")] public long SupportCount { get; set; } /// /// 阅读数 /// [XmlElement("total_page_view_count")] public long TotalPageViewCount { get; set; } } }