using IStation.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class RoleMenuDto
{
///
///
///
public RoleMenuDto() { }
///
///
///
public RoleMenuDto(Model.RoleMenuMapping rhs)
{
this.ID = rhs.ID;
this.RoleID = rhs.RoleID;
this.MenuID = rhs.MenuID;
this.AuthLevel = rhs.AuthLevel;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 角色标识
///
public long RoleID { get; set; }
///
/// 菜单标识
///
public long MenuID { get; set; }
///
/// 权限等级
///
public eAuthLevel AuthLevel { get; set; }
}
}