using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Hncore.Pass.BaseInfo.Response
{
///
/// 用户统计
///
/// mzh 2018/1/6 add
public class PropertyUserStatisticsDTO
{
///
/// 总用户数
///
public int AllUserCount { get; set; }
///
/// 已迁入用户数
///
public int InRoomUserCount { get; set; }
///
/// 未审核用户数
///
public int NotCheckUserCount { get; set; }
///
/// 未通过用户数
///
public int NotPassUserCount { get; set; }
///
/// 已迁出用户数
///
public int OutRoomUserCount { get; set; }
///
/// 黑名单用户数
///
public int BlackUserCount { get; set; }
}
}