namespace Application.Features.Director.Users.Get { public class Response { public required string ID { get; set; } public string? Name { get; set; } public string? Email { get; set; } public string? Phone { get; set; } public bool IsDeleted { get; set; } public bool EmailConfirmed { get; set; } public bool LockoutEnd { get; set; } public IEnumerable Roles { get; set; } = []; } }