IW4M-Admin/WebfrontCore/ViewModels/SideContextMenuItem.cs

24 lines
607 B
C#
Raw Normal View History

2022-04-19 19:43:58 -04:00
using System.Collections.Generic;
namespace WebfrontCore.ViewModels;
public class SideContextMenuItem
{
public bool IsLink { get; set; }
public bool IsButton { get; set; }
public bool IsActive { get; set; }
public string Title { get; set; }
public string Reference { get; set; }
public string Icon { get; set; }
public string Tooltip { get; set; }
2022-04-28 11:09:25 -04:00
public int? EntityId { get; set; }
public string Meta { get; set; }
2022-04-19 19:43:58 -04:00
}
public class SideContextMenuItems
{
public string MenuTitle { get; set; }
public List<SideContextMenuItem> Items { get; set; } = new();
}