using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiContentCommentDataBatchqueryResponse. /// public class KoubeiContentCommentDataBatchqueryResponse : AopResponse { /// /// 评价结果列表 /// [XmlArray("comments")] [XmlArrayItem("comment_open_model")] public List Comments { get; set; } /// /// 当前查询条件下评价总数 /// [XmlElement("count")] public long Count { get; set; } } }