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; }
|
2023-04-07 17:23:24 -04:00
|
|
|
|
public bool IsCollapse { get; set; }
|
2022-04-19 19:43:58 -04:00
|
|
|
|
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; }
|
2022-09-08 16:03:38 -04:00
|
|
|
|
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();
|
|
|
|
|
}
|