水岸东方
This commit is contained in:
16
Entity/Model/DB/UserInfo.cs
Normal file
16
Entity/Model/DB/UserInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Fantasy.Entitas;
|
||||
|
||||
namespace Fantasy;
|
||||
|
||||
public class UserInfo : Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 昵称
|
||||
/// </summary>
|
||||
public string NickName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 余额
|
||||
/// </summary>
|
||||
public long Money { get; set; }
|
||||
}
|
||||
11
Entity/Model/Game/Player.cs
Normal file
11
Entity/Model/Game/Player.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Fantasy.Entitas;
|
||||
|
||||
namespace Fantasy;
|
||||
|
||||
/// <summary>
|
||||
/// 玩家信息
|
||||
/// </summary>
|
||||
public class Player : Entity
|
||||
{
|
||||
|
||||
}
|
||||
11
Entity/Model/User.cs
Normal file
11
Entity/Model/User.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Fantasy.Entitas;
|
||||
|
||||
namespace Fantasy.Model;
|
||||
|
||||
public sealed class User : Entity
|
||||
{
|
||||
public string NickName { get; set; }
|
||||
public string Head { get; set; }
|
||||
public string Country { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user