namespace SPMS.Application.DTOs.Account; public class AccountResponseDto { public string AdminCode { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public string? Phone { get; set; } public string Role { get; set; } = string.Empty; public bool EmailVerified { get; set; } public DateTime CreatedAt { get; set; } public DateTime? LastLoginAt { get; set; } }