api/HamyanEdalat.Domain/Dtos/ResponseDtos/ProfileResponseDto.cs

8 lines
251 B
C#
Raw Normal View History

2024-03-09 19:53:01 +03:30
namespace HamyanEdalat.Domain.Dtos.ResponseDtos;
public class ProfileResponseDto
{
public List<string> Roles { get; set; } = new();
public ApplicationUserSDto? User { get; set; }
public List<string> Permissions { get; set; } = new();
}