Files
Yi.Framework/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/UserRoleMenuDto.cs
2023-04-15 17:35:22 +08:00

16 lines
469 B
C#

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();
}
}