mirror of https://github.com/quasar/Quasar.git
25 lines
476 B
C#
25 lines
476 B
C#
using ProtoBuf;
|
|
|
|
namespace xClient.Core.Packets.ClientPackets
|
|
{
|
|
[ProtoContract]
|
|
public class MonitorsResponse : IPacket
|
|
{
|
|
[ProtoMember(1)]
|
|
public int Number { get; set; }
|
|
|
|
public MonitorsResponse()
|
|
{
|
|
}
|
|
|
|
public MonitorsResponse(int number)
|
|
{
|
|
this.Number = number;
|
|
}
|
|
|
|
public void Execute(Client client)
|
|
{
|
|
client.Send<MonitorsResponse>(this);
|
|
}
|
|
}
|
|
} |