public ReloadRemoteCommand(string remoteCommand, RemoteCommandPriority priority)
 {
     this.remoteCommand = remoteCommand;
     this.priority      = priority;
 }
 public AnonymousRemoteCommand(string command, RemoteCommandPriority priority = RemoteCommandPriority.Middle)
 {
     this.priority = priority;
     this.command  = command;
 }