namespace NetinaShop.Domain.Dtos.ResponseDtos; public class ProfileResponseDto { public List Roles { get; set; } = new(); public ApplicationUserSDto? User { get; set; } public List Permissions { get; set; } = new(); }