using System.Collections.Generic; using System.Windows.Input; namespace ControlCatalog.ViewModels { public class MenuItemViewModel { public string Header { get; set; } public ICommand Command { get; set; } public object CommandParameter { get; set; } public IList Items { get; set; } } }