using LSFE.Infrastructure.Entities; using Microsoft.AspNetCore.Identity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Dto { public class UserWithRoleDto : AppsUsers { public string? RoleName { get; set; } public Departments? Departments { get; set; } public List? UserRoles { get; set; } public string? RoleId { get; set; } } }