using System.Collections.Generic; namespace GxPress.Result.DataCenter { /// /// 商务数据 /// public class CommerceDataResult { /// /// 平台商务数据 /// public PlatformCommerceResult PlatformCommerceResult { get; set; } /// /// 今日平台商务数据 /// public PlatformCommerceResult PlatformTodayCommerceResult { get; set; } /// /// 内容销售排行榜 /// /// public List ContentSaleRankingResults { get; set; } /// /// 内容分类销售占比 /// public List ContentSaleProportionResults { get; set; } } }