Files
huabe-sitondao/tongxin/NetWorkHelper/UDP/Receive/ReadFileObject.cs
2025-11-14 16:12:32 +08:00

17 lines
294 B
C#

namespace NetWorkHelper
{
internal class ReadFileObject
{
public ReadFileObject(int index, byte[] buffer)
{
Index = index;
Buffer = buffer;
}
public int Index { get; set; }
public byte[] Buffer { get; set; }
}
}