api/HiVakil.Domain/Dtos/ResponseDto/ProfileResponseDto.cs

8 lines
245 B
C#
Raw Permalink Normal View History

2024-02-26 12:37:42 +03:30
namespace HiVakil.Domain.Dtos.ResponseDto;
public class ProfileResponseDto
{
public List<string> Roles { get; set; } = new();
public ApplicationUserSDto? User { get; set; }
public List<string> Permissions { get; set; } = new();
}