9 lines
214 B
C#
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; }
|
|
} |