2024-08-11 19:20:09 +03:30
|
|
|
|
namespace Brizco.Domain.Dtos.ResponseDto;
|
2023-11-23 15:42:59 +03:30
|
|
|
|
|
|
|
|
|
|
public class ProfileResponseDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<ComplexUserRoleSDto> Roles { get; set; } = new();
|
|
|
|
|
|
public ApplicationUserSDto? User { get; set; }
|
|
|
|
|
|
public List<string> Permissions { get; set; } = new();
|
|
|
|
|
|
}
|