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

10 lines
282 B
C#
Raw Normal View History

2024-04-16 20:01:34 +03:30
using Netina.Domain.Dtos.SmallDtos;
namespace Netina.Domain.Dtos.ResponseDtos;
2023-12-16 20:25:12 +03:30
public class ProfileResponseDto
{
public List<string> Roles { get; set; } = new();
public ApplicationUserSDto? User { get; set; }
public List<string> Permissions { get; set; } = new();
}