- namespace Application.Features.Director.GetUsers
- {
- 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<string> Roles { get; set; } = [];
- }
- }
|