using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Edge.Core.Processor.Communicator
{
internal interface IClinet
{
///
/// 获取链接客户端
///
///
TcpClient? GetTcpClient();
}
}