namespace Socialize.Modules.Identity.Models; public class UserDto { public Guid Id { get; init; } public IList UserRoles { get; init; } = []; public string? Persona { get; init; } public IList AuthorizedWorkspaceIds { get; init; } = []; public IList AuthorizedClientIds { get; init; } = []; public IList AuthorizedProjectIds { get; init; } = []; public string Username { get; init; } = null!; public string? Alias { get; init; } public string? PortraitUrl { get; init; } public string? Firstname { get; init; } public string? Lastname { get; init; } public string? Email { get; init; } public string? PhoneNumber { get; init; } public DateTime? BirthDate { get; init; } public string? Address { get; init; } }