pschelpdesk/Shared/Menu/Item.cs
2024-11-04 11:28:08 +01:00

15 lines
366 B
C#

using System.Windows.Input;
using Avalonia.Controls;
using PSCHelpdesk.Shared.ViewModels;
namespace PSCHelpdesk.Shared.Menu;
public class Item
{
public string Icon { get; set; }
public string Header { get; set; }
public ICommand Command { get; set; }
public object CommandParameter { get; set; }
public IList<Item> Items { get; set; }
}