LSFE/LSFE.Infrastructure/Dto/UserWithRoleDto.cs
2026-07-30 10:31:04 +08:00

19 lines
486 B
C#

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<RoleDto>? UserRoles { get; set; }
public string? RoleId { get; set; }
}
}