panel
This commit is contained in:
16
NetPanel.Entity/Menu.cs
Normal file
16
NetPanel.Entity/Menu.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NetPanel.Entity
|
||||
{
|
||||
public class Menu
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int ParentId { get; set; }
|
||||
public string Icon { get; set; }
|
||||
public string MenuName { get; set; }
|
||||
public string Url { get; set; }
|
||||
public List<Menu> Child { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user