添加项目文件。
This commit is contained in:
19
Atomx.Admin/Atomx.Admin.Client/Models/MenuTreeItem.cs
Normal file
19
Atomx.Admin/Atomx.Admin.Client/Models/MenuTreeItem.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user