using Mesnac.Communication; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Mesnac.Compressor.Entity { public class SocketEqiup { public string IP { get; set; } public string Port { get; set; } public SocketClient Socket { get; set; } public EquipType EquipType { get; set; } } public enum EquipType { //RFIDsocket RFIDSocket, //服务器端Socket ServerSocket } public class SocketMessage { /// /// 信息 /// public string Message { get; set; } // public SocketClient Client { get; set; } } }