using System.Net.Sockets; namespace IoT.Shared.DeviceServices.FBee { public class TcpClientWrapper { public string Sn { get; set; } public string Ip { get; set; } public TcpClient Client { get; set; } } }