Put in description iocn

This commit is contained in:
Lars Brubaker 2021-04-22 14:24:34 -07:00
parent d0d5b992d7
commit ca68f03128
9 changed files with 19 additions and 12 deletions

View file

@ -35,10 +35,13 @@ namespace MatterHackers.MatterControl.DesignTools
public class WebPageLinkAttribute : Attribute
{
public string Url { get; private set; }
public string Name { get; private set; }
public WebPageLinkAttribute(string name, string url)
public string ButtonName { get; private set; }
public string RowName { get; private set; }
public WebPageLinkAttribute(string rowName, string buttonName, string url)
{
Name = name;
RowName = rowName;
ButtonName = buttonName;
Url = url;
}
}