20 lines
465 B
C#
20 lines
465 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 object ViewModel { get; set; }
|
|
|
|
public UserControl GetView { get; set; }
|
|
public IList<Item> Items { get; set; }
|
|
} |