using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Model.ViewModels
{
public class VipPowerRolesViewsDTO
{
public bool IsVip { get; set; }
///
/// pc端权限
///
public PCRole pcRole { get; set; }
///
/// 小程序权限
///
public MinProRole minProRole { get; set; }
}
public class PCRole
{
///
/// 成绩更改次数
///
public int ScoreCount { get; set; }
///
/// 模块查看次数
///
public int SearchCount { get; set; }
///
/// 智能填报可以看多少所
///
public int ShowCount { get; set; }
}
public class MinProRole
{
///
/// 成绩更改次数
///
public int ScoreCount { get; set; }
///
/// 模块查看次数
///
public int SearchCount { get; set; }
///
/// 智能填报可以看多少所
///
public int ShowCount { get; set; }
}
}