/// <summary>
 /// Initialize a new instance of this class with the provided command and operation
 /// </summary>
 /// <param name="command"></param>
 /// <param name="operation"></param>
 public CommandOperationEventArgs(NetCommand command, CommandOperation operation)
 {
     Command   = command;
     Operation = operation;
 }
 /// <summary>
 /// Initialize a new instance of this class with the provided operation
 /// </summary>
 /// <param name="operation"></param>
 public CommandOperationEventArgs(CommandOperation operation)
 {
     Operation = operation;
     Command   = operation.Command;
 }