public ClientItem(RCClient client) : base(new string[]
 {
     client.Name,
     client.ClientIP,
     client.Version.ToString()
 })
 {
     this.Name               = client.Name;
     this.IP                 = client.ClientIP;
     this.ID                 = client.ID;
     this.Version            = client.Version;
     this._processCollection = client.ProcessClone();
 }