init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user