10 lines
287 B
C#
10 lines
287 B
C#
|
|
using NetinaCMS.Domain.Dtos.SmallDto;
|
|||
|
|
|
|||
|
|
namespace NetinaCMS.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();
|
|||
|
|
}
|