19 lines
486 B
C#
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; }
|
|
}
|
|
}
|