public void RemoveCustome(CustomServer cs)
 {
     _customServerList.Remove(_customServerList.Find(server => server.Name.Equals(cs.Name)));
 }
 public void AddCustom(CustomServer cs)
 {
     this._customServerList.Add(cs);
 }