Quasar/Server/Core/Packets/ClientPackets/DownloadFileResponse.cs

46 lines
1.1 KiB
C#
Raw Normal View History

2014-07-08 05:58:53 -07:00
using ProtoBuf;
2015-01-13 10:29:11 -08:00
namespace xServer.Core.Packets.ClientPackets
2014-07-08 05:58:53 -07:00
{
[ProtoContract]
public class DownloadFileResponse : IPacket
{
[ProtoMember(1)]
public int ID { get; set; }
2014-07-08 05:58:53 -07:00
[ProtoMember(2)]
public string Filename { get; set; }
2014-07-08 05:58:53 -07:00
[ProtoMember(3)]
public byte[] Block { get; set; }
[ProtoMember(4)]
public int MaxBlocks { get; set; }
[ProtoMember(5)]
public int CurrentBlock { get; set; }
[ProtoMember(6)]
public string CustomMessage { get; set; }
2014-07-08 05:58:53 -07:00
public DownloadFileResponse()
{
}
public DownloadFileResponse(int id, string filename, byte[] block, int maxblocks, int currentblock,
string custommessage)
2014-07-08 05:58:53 -07:00
{
this.ID = id;
this.Filename = filename;
this.Block = block;
this.MaxBlocks = maxblocks;
this.CurrentBlock = currentblock;
this.CustomMessage = custommessage;
2014-07-08 05:58:53 -07:00
}
public void Execute(Client client)
{
client.Send<DownloadFileResponse>(this);
}
}
}