Mineplex2018-withcommit/Website/LOC.Core/Model/Server/PvpServer/FieldMonster.cs

23 lines
478 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02: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; }
}
}