ApplicationUserDto.cs 548 B

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