namespace OpenAuth.App.Response
{
///
/// 用户ID
///
public class ModuleElementVM
{
///
/// 用户ID
///
///
public int Id { get; set; }
///
/// DOM ID
///
///
public string DomId { get; set; }
///
/// 组织名称
///
///
public string Name { get; set; }
//模块ID
public int ModuleId { get; set; }
///
/// 所属模块名称
///
public string ModuleName { get; set; }
///
/// 授权状态
///
public bool Accessed { get; set; }
public ModuleElementVM()
{
this.Id = 0;
this.DomId = string.Empty;
this.Name = string.Empty;
this.ModuleId = 0;
this.ModuleName = string.Empty;
this.Accessed = false;
}
}
}