first commit
This commit is contained in:
22
Ultron.Proxy.Client/ClientAppWorker.cs
Normal file
22
Ultron.Proxy.Client/ClientAppWorker.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
|
||||
namespace Ultron.Proxy
|
||||
{
|
||||
public class ClientAppWorker
|
||||
{
|
||||
public List<TcpClient> TcpClientGroup = new List<TcpClient>();
|
||||
public int AppId; //1~255
|
||||
public int Port; //0~65535
|
||||
private bool isWorking = false;
|
||||
|
||||
public bool IsWorking { get => isWorking;}
|
||||
|
||||
public void StartWork()
|
||||
{
|
||||
isWorking = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user