using Fantasy.Entitas; namespace Fantasy; public sealed class Account : Entity { public string Username { get; set; } public string Password { get; set; } public long CreateTime { get; set; } public long LoginTime { get; set; } }