using System; namespace Entities.DTO { public class ClassUserDto { public Guid StudentId { get; set; } public string? Email { get; set; } public string? DisplayName { get; set; } public string? PhoneNumber { get; set; } public string? Address { get; set; } public bool TwoFactorEnabled { get; set; } public bool EmailConfirmed { get; set; } } }