using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// KoubeiContentCommentDataBatchqueryResponse. /// public class KoubeiContentCommentDataBatchqueryResponse : AopResponse { /// /// 评价结果列表 /// [JsonProperty("comments")] public List Comments { get; set; } /// /// 当前查询条件下评价总数 /// [JsonProperty("count")] public long Count { get; set; } } }