using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Project.Class { public class WebSocket : WatsonWebsocket.WatsonWsServer { public eTarget Target { get; set; } public int TargetIdx { get; set; } public WebSocket(string host, int port) : base(host, port) { } } }