1
0
Files
mineplex-crepe/Website/LOC.Core/Model/Server/PvpServer/FieldMonster.cs

23 lines
478 B
C#
Raw Normal View History

2021-08-19 16:35:32 +07:00
namespace LOC.Core.Model.Server.PvpServer
{
public class FieldMonster
{
public int FieldMonsterId { get; set; }
public string Server { get; set; }
public string Name { get; set; }
public string Type { get; set; }
public int MobMax { get; set; }
public double MobRate { get; set; }
public string Centre { get; set; }
public int Radius { get; set; }
public int Height { get; set; }
}
}