20 lines
444 B
C#
20 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models
|
|
{
|
|
public class MenuItem
|
|
{
|
|
public string ID { get; set; }
|
|
public string Label { get; set; }
|
|
public string Icon { get; set; }
|
|
public Action Action { get; set; }
|
|
public string RequiredPermission { get; set; }
|
|
public bool IsVisible { get; set; }
|
|
}
|
|
|
|
}
|