Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/UserRoleMenuDto.cs

20 lines
541 B
C#
Raw Normal View History

2022-04-30 21:48:18 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
namespace Yi.Framework.DTOModel
{
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();
2022-04-30 21:48:18 +08:00
}
}