水岸东方

This commit is contained in:
bob
2025-07-04 17:25:10 +08:00
parent d7916515fd
commit e4c3feb033
7 changed files with 61 additions and 17 deletions

11
Entity/Model/User.cs Normal file
View 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; }
}