12121
This commit is contained in:
9
Service/Application.Domain.Entity/model/GameNpcModel.cs
Normal file
9
Service/Application.Domain.Entity/model/GameNpcModel.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
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; }
|
||||
}
|
||||
8
Service/Application.Domain.Entity/model/TaskNeedData.cs
Normal file
8
Service/Application.Domain.Entity/model/TaskNeedData.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class TaskNeedData:TowerNeed
|
||||
{
|
||||
public string areaCode { get; set; }
|
||||
public string mapId { get; set; }
|
||||
|
||||
}
|
||||
11
Service/Application.Domain.Entity/model/UserTaskModel.cs
Normal file
11
Service/Application.Domain.Entity/model/UserTaskModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class UserTaskModel
|
||||
{
|
||||
public string code { get; set; }
|
||||
public int taskId { get; set; }
|
||||
public int itemId { get; set; }
|
||||
public string name { get; set; }
|
||||
public int state { get; set; }
|
||||
public CheckTowerNeed result { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user