mirror of https://github.com/quasar/Quasar.git
26 lines
485 B
C#
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);
|
|
}
|
|
}
|
|
} |