11 lines
247 B
C#
11 lines
247 B
C#
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; }
|
|
} |