|
|
@ -6,11 +6,11 @@ namespace Volo.Abp.BlazoriseUI |
|
|
{ |
|
|
{ |
|
|
public string Text { get; set; } |
|
|
public string Text { get; set; } |
|
|
|
|
|
|
|
|
public IconName? Icon { get; set; } |
|
|
public object Icon { get; set; } |
|
|
|
|
|
|
|
|
public string Url { get; set; } |
|
|
public string Url { get; set; } |
|
|
|
|
|
|
|
|
public BreadcrumbItem(string text, string url = null, IconName? icon = null) |
|
|
public BreadcrumbItem(string text, string url = null, object icon = null) |
|
|
{ |
|
|
{ |
|
|
Text = text; |
|
|
Text = text; |
|
|
Url = url; |
|
|
Url = url; |
|
|
|