Files
Kg.SeaTime/Service/Application.Domain.Entity/model/GameNpcModel.cs
2026-07-09 22:46:28 +08:00

9 lines
214 B
C#

namespace Application.Domain.Entity;
public class GameNpcModel
{
public int npcId { get; set; }
public string name { get; set; }
public string tips { get; set; }
public int state { get; set; }
}