using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MerchantshopCommentStatistic Data Structure. /// [Serializable] public class MerchantshopCommentStatistic : AopObject { /// /// 评论总数 /// [XmlElement("comment_count")] public long CommentCount { get; set; } /// /// 评分(平均分),两位小数 /// [XmlElement("score")] public long Score { get; set; } } }