IW4M-Admin/WebfrontCore/ViewModels/SideContextMenuItem.cs

22 lines
531 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; }
}
public class SideContextMenuItems
{
public string MenuTitle { get; set; }
public List<SideContextMenuItem> Items { get; set; } = new();
}