Files
lserp_cs_5.0/Lskj.Test/LSServerService/LSSocketRev.cs
T
2026-07-10 15:25:05 +08:00

36 lines
634 B
C#

namespace LSServerService
{
using System;
public class LSSocketRev
{
private byte[] _ByteData = null;
private LSSocket _ClientSocket = null;
public byte[] ByteData
{
get
{
return this._ByteData;
}
set
{
this._ByteData = value;
}
}
public LSSocket ClientSocket
{
get
{
return this._ClientSocket;
}
set
{
this._ClientSocket = value;
}
}
}
}