123456789101112131415161718192021222324252627282930313233343536 |
- using System.Collections.Generic;
- namespace GxPress.Result.DataCenter
- {
-
-
-
- public class OperationDataResult
- {
-
-
-
-
- public PlatformOperationDataResult PlatformOperationDataResult { get; set; }
-
-
-
-
- public UserIncreaseResult UserIncreaseResult { get; set; }
-
-
-
-
- public List<UserAreaDistributingResult> UserAreaDistributingResults { get; set; }
-
-
-
-
- public UserVipProportionResult UserVipProportionResult { get; set; }
-
-
-
-
- public OnlineUserResult OnlineUserResult { get; set; }
- }
- }
|