Files
LL-28/tongxin/NetWorkHelper/UDP/Receive/ReadFileObject.cs
moxiliang 7065cad6d7 251024
2025-10-24 14:08:41 +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; }
}
}