20 lines
523 B
C#
20 lines
523 B
C#
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class MenuTreeItem
|
|
{
|
|
public string Icon { get; set; } = string.Empty;
|
|
|
|
public string IconFont { get; set; } = string.Empty;
|
|
|
|
public string Locale { get; set; } = string.Empty;
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Key { get; set; } = string.Empty;
|
|
|
|
public string Path { get; set; } = string.Empty;
|
|
|
|
public List<MenuTreeItem> Children { get; set; } = new List<MenuTreeItem>();
|
|
}
|
|
}
|