16 lines
267 B
C#
16 lines
267 B
C#
using Fantasy.Entitas;
|
|
|
|
namespace Fantasy;
|
|
|
|
public class UserInfo : Entity
|
|
{
|
|
/// <summary>
|
|
/// 昵称
|
|
/// </summary>
|
|
public string NickName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 余额
|
|
/// </summary>
|
|
public long Money { get; set; }
|
|
} |