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

10 lines
287 B
C#
Raw Permalink Normal View History

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