20 lines
		
	
	
		
			601 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			601 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| // ***********************************************************************
 | |
| // <copyright file="TokenAdapter.cs">
 | |
| //     AgileWebs
 | |
| // </copyright>
 | |
| // ***********************************************************************
 | |
| 
 | |
| namespace Core.Thalos.BuildingBlocks
 | |
| {
 | |
|     public class TokenAdapter
 | |
|     {
 | |
|         public UserAdapter? User { get; set; }
 | |
| 
 | |
|         public RoleAdapter? Role { get; set; }
 | |
|         public TenantAdapter? Tenant { get; set; }
 | |
| 
 | |
|         public IEnumerable<PermissionAdapter>? Permissions { get; set; }
 | |
|         public IEnumerable<ModuleAdapter> Modules { get; set; } = null!;
 | |
|     }
 | |
| }
 |