public bool IsNewerVersionThan(NodeLibrary otherLibrary) { if (otherLibrary.MinorVersion < MinorVersion) { return(true); } return(otherLibrary.Patch < Patch); }
public NodeModel(string nodeTypeFullName, NodeLibrary dependency) { Name = nodeTypeFullName; Dependency = dependency; Terminals = new List <TerminalModel>(); }