using System.Collections.Generic; namespace GxPress.Result.DataCenter { /// /// 内容数据 /// public class ContentDataResult { /// /// 平台内容数据 /// /// public List PlatformContentDataInfoResult { get; set; } /// /// 内容类型分布图 /// public List ContentTypeDistributingResult { get; set; } /// /// 内容科学分布图 /// public List ContentOlogyDistributingResult { get; set; } /// /// 收费内容统计图 /// public PayContentstatisticsResult PayContentstatisticsResult { get; set; } /// /// 内容增长情况图 /// public ContentIncreaseResult ContentIncreaseResult { get; set; } } /// /// 平台内容数据 /// public class PlatformContentDataInfoResult { /// /// 名称 /// /// public string Type { get; set; } /// /// 值 /// /// public int Value { get; set; } /// /// item /// /// public List Item { get; set; } } /// /// 平台内容数据Item /// public class PlatformContentDataInfoItemResult { /// /// 名称 /// /// public string Type { get; set; } /// /// 值 /// /// public int Value { get; set; } } }