22 lines
531 B
C#
22 lines
531 B
C#
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();
|
|
}
|