using Microsoft.AspNetCore.Identity; namespace Fengling.AuthService.Models; public class ApplicationUser : IdentityUser { public string? RealName { get; set; } public string? Phone { get; set; } public TenantInfo TenantInfo { get; set; } = null!; public DateTime CreatedTime { get; set; } = DateTime.UtcNow; public DateTime? UpdatedTime { get; set; } public bool IsDeleted { get; set; } }