Files
Kg.SeaTime/Service/Application.Domain.Entity/model/MapMonsterModel.cs
Putoo c374f27d16 111
2026-06-25 18:39:45 +08:00

11 lines
258 B
C#

namespace Application.Domain.Entity;
public class MapMonsterModel
{
public string monterId { get; set; }
public string name { get; set; }
/// <summary>
/// 0地图怪物 1生成怪物
/// </summary>
public int type { get; set; }
}