chore:目录重构
This commit is contained in:
15
Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/UserRoleMenuDto.cs
Normal file
15
Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/UserRoleMenuDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
using Yi.Furion.Core.Rbac.Entities;
|
||||
|
||||
namespace Yi.Furion.Core.Rbac.Dtos
|
||||
{
|
||||
public class UserRoleMenuDto
|
||||
{
|
||||
public UserEntity User { get; set; } = new();
|
||||
public HashSet<RoleEntity> Roles { get; set; } = new();
|
||||
public HashSet<MenuEntity> Menus { get; set; } = new();
|
||||
|
||||
public List<string> RoleCodes { get; set; } = new();
|
||||
public List<string> PermissionCodes { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user