public override bool Equals(object other) { var otherAction = other as StartWorkflowAction; if (otherAction == null) { return(false); } return(_workflowItems.Equals(otherAction._workflowItems)); }