public DocumentationLink(DocumentationLinkType type, string url, string label) { Label = label ?? type.ToString(); Url = url; Type = type; Open = new AnotherCommandImplementation(Execute); }
public DocumentationLink(DocumentationLinkType type, string url, string label = null) { Label = label ?? type.ToString(); Url = url; Type = type; Open = new RelayCommand(Execute); }