Response.cs 424 B

1234567891011121314
  1. namespace Application.Features.Director.Users.Get;
  2. public class Response
  3. {
  4. public required string ID { get; set; }
  5. public string? Name { get; set; }
  6. public string? Email { get; set; }
  7. public string? Phone { get; set; }
  8. public bool IsDeleted { get; set; }
  9. public bool EmailConfirmed { get; set; }
  10. public bool LockoutEnd { get; set; }
  11. public IEnumerable<string> Roles { get; set; } = [];
  12. }