12 lines
278 B
C#
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; }
|
|
} |