Files
Fishing2Server/Entity/Authentication/Entity/Account.cs
2025-08-07 09:16:23 +08:00

12 lines
278 B
C#

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