ApplicationUserDto.cs 498 B

1234567891011121314
  1. namespace Application.Abstractions.Identity.Models;
  2. public class ApplicationUserDto
  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 string? NewPassword { get; set; }
  9. public string? ConfirmPassword { get; set; }
  10. public bool IsDeleted { get; set; } = false;
  11. public bool EmailConfirmed { get; set; } = false;
  12. public bool LockoutEnd { get; set; } = false;
  13. }