43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using APT.BaseData.Domain.Entities;
 | 
						|
using APT.BaseData.Domain.Entities.FM;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic; 
 | 
						|
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The model that represents an API displayed on the help page.
 | 
						|
    /// </summary>
 | 
						|
    public class RichUserModel
 | 
						|
    {
 | 
						|
        public RichUserModel()
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        public T_FM_USER  User { get; set; }
 | 
						|
        public List<T_PF_APPMENU> AppMenuList { get; set; }
 | 
						|
   
 | 
						|
        public List<T_FM_ROLE> RoleList { get; set; }
 | 
						|
 | 
						|
        public List<T_FM_ROLE> LineRoleList { get; set; }
 | 
						|
        public List<T_FM_ROLE> AppRoleList { get; set; }
 | 
						|
 | 
						|
        public string Token { get; set; }
 | 
						|
        public string OrgId { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 죗깊긍서홈掘
 | 
						|
        /// </summary>
 | 
						|
        public bool ListConfig { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// 꿴璂긍서홈掘
 | 
						|
        /// </summary>
 | 
						|
        public bool QueryConfig { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// 긍서女충긍서홈掘
 | 
						|
        /// </summary>
 | 
						|
        public bool EditConfig { get; set; }
 | 
						|
 | 
						|
    }
 | 
						|
} |