This commit is contained in:
moxiliang
2025-10-24 14:08:41 +08:00
parent dcd9b20fb0
commit 7065cad6d7
479 changed files with 105341 additions and 647562 deletions

View File

@@ -0,0 +1,37 @@
using System;
namespace NetWorkHelper
{
[Serializable]
public class TraFransfersFile
{
private string _md5;
private int _index;
private byte[] _buffer;
public TraFransfersFile(string md5, int index, byte[] buffer)
{
_md5 = md5;
_index = index;
_buffer = buffer;
}
public string MD5
{
get { return _md5; }
set { _md5 = value; }
}
public int Index
{
get { return _index; }
set { _index = value; }
}
public byte[] Buffer
{
get { return _buffer; }
set { _buffer = value; }
}
}
}