19 lines
436 B
C#
19 lines
436 B
C#
using Articulate_Network.Attributes;
|
|
using Articulate_Network.Packets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MIT_Packets.Transfer
|
|
{
|
|
public class SendFileChunkPacket : Packet
|
|
{
|
|
[PacketIgnore]
|
|
public int TransferID { get; set; }
|
|
public int ChunkSize { get; set; }
|
|
public byte[] Chunk { get; set; }
|
|
}
|
|
}
|