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

26 lines
485 B
C#

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