123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System.Collections.Generic;
- namespace GxPress.Result.DataCenter
- {
-
-
-
- public class ContentDataResult
- {
-
-
-
-
- public List<PlatformContentDataInfoResult> PlatformContentDataInfoResult { get; set; }
-
-
-
- public List<ContentTypeDistributingResult> ContentTypeDistributingResult { get; set; }
-
-
-
- public List<ContentOlogyDistributingResult> 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; }
-
-
-
-
- public List<PlatformContentDataInfoItemResult> Item { get; set; }
- }
-
-
-
- public class PlatformContentDataInfoItemResult
- {
-
-
-
-
- public string Type { get; set; }
-
-
-
-
- public int Value { get; set; }
- }
- }
|