Quasar/Server/Core/Packets/ServerPackets/DownloadFileCanceled.cs

26 lines
485 B
C#

using ProtoBuf;
using xServer.Core.Networking;
namespace xServer.Core.Packets.ServerPackets
{
[ProtoContract]
public class DownloadFileCanceled : IPacket
{
[ProtoMember(1)]
public int ID { get; set; }
public DownloadFileCanceled()
{
}
public DownloadFileCanceled(int id)
{
this.ID = id;
}
public void Execute(Client client)
{
client.Send(this);
}
}
}