mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-10 03:14:45 +08:00
调整了一下项目框架与前端JS代码
This commit is contained in:
18
OpenAuth.Domain/Menu.cs
Normal file
18
OpenAuth.Domain/Menu.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace OpenAuth.Domain
|
||||
{
|
||||
public partial class Menu
|
||||
{
|
||||
public string MenuId { get; set; }
|
||||
public string ParentId { get; set; }
|
||||
public string FullName { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Img { get; set; }
|
||||
public int Category { get; set; }
|
||||
public string NavigateUrl { get; set; }
|
||||
public string FormName { get; set; }
|
||||
public string Target { get; set; }
|
||||
public bool IsUnfold { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public int SortCode { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user