You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Components/Breadcrumbs/BreadcrumbItem.cs

18 lines
353 B

2 years ago
namespace Connected.Components;
public class BreadcrumbItem
{
public string Text { get; }
public string Href { get; }
public bool Disabled { get; }
public string Icon { get; }
public BreadcrumbItem(string text, string href, bool disabled = false, string icon = null)
{
Text = text;
Disabled = disabled;
Href = href;
Icon = icon;
}
}