using System.Collections.Generic;
namespace GxPress.Result.DataCenter
{
///
/// 运营数据
///
public class OperationDataResult
{
///
/// 平台运营数据
///
///
public PlatformOperationDataResult PlatformOperationDataResult { get; set; }
///
/// 用户总数增长趋势
///
///
public UserIncreaseResult UserIncreaseResult { get; set; }
///
/// 用户地区分布
///
///
public List UserAreaDistributingResults { get; set; }
///
/// 会员用户占比
///
///
public UserVipProportionResult UserVipProportionResult { get; set; }
///
/// 实时在线人数
///
///
public OnlineUserResult OnlineUserResult { get; set; }
}
}