Api/NetinaShop.Domain/Dtos/ResponseDtos/ProfileResponseDto.cs

8 lines
249 B
C#
Raw Normal View History

2023-12-16 20:25:12 +03:30
namespace NetinaShop.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();
}