Response.cs 470 B

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