mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-11 23:58:08 -05:00
huge commit for webfront facelift
This commit is contained in:
21
WebfrontCore/ViewModels/SideContextMenuItem.cs
Normal file
21
WebfrontCore/ViewModels/SideContextMenuItem.cs
Normal file
@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
Reference in New Issue
Block a user