mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
478 B
21 lines
478 B
using ZeroLevel.Services.Serialization;
|
|
|
|
namespace ZeroLevel.Services.Network.FileTransfer.Model
|
|
{
|
|
public sealed class FileEndFrame
|
|
: IBinarySerializable
|
|
{
|
|
public int FileUploadTaskId;
|
|
|
|
public void Serialize(IBinaryWriter writer)
|
|
{
|
|
writer.WriteInt32(this.FileUploadTaskId);
|
|
}
|
|
|
|
public void Deserialize(IBinaryReader reader)
|
|
{
|
|
this.FileUploadTaskId = reader.ReadInt32();
|
|
}
|
|
}
|
|
}
|