2023-04-13 21:12:06 +08:00
|
|
|
|
using System.Collections.Generic;
|
2023-04-15 17:33:42 +08:00
|
|
|
|
using Yi.Furion.Core.Rbac.Entities;
|
2023-04-13 21:12:06 +08:00
|
|
|
|
|
2023-04-15 17:33:42 +08:00
|
|
|
|
namespace Yi.Furion.Core.Rbac.Dtos
|
2023-04-13 21:12:06 +08:00
|
|
|
|
{
|
|
|
|
|
|
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();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|