namespace Application.Abstractions.Identity.Models { public class ApplicationUserDto { public required string ID { get; set; } public string? Name { get; set; } public string? Email { get; set; } public string? Phone { get; set; } public string? NewPassword { get; set; } public string? ConfirmPassword { get; set; } public bool IsDeleted { get; set; } = false; public bool EmailConfirmed { get; set; } = false; public bool LockoutEnd { get; set; } = false; } }