mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-13 16:23:56 +08:00
17 lines
524 B
C#
17 lines
524 B
C#
|
using System.Drawing;
|
|||
|
using System.Windows.Input;
|
|||
|
using Wox.Plugin;
|
|||
|
|
|||
|
namespace Wox.ViewModel
|
|||
|
{
|
|||
|
public class ContextMenuItemViewModel : BaseModel
|
|||
|
{
|
|||
|
public string Title { get; set; }
|
|||
|
public string Glyph { get; set; }
|
|||
|
public string FontFamily { get; set; }
|
|||
|
public ICommand Command { get; set; }
|
|||
|
public string AcceleratorKey { get; set; }
|
|||
|
public string AcceleratorModifiers { get; set; }
|
|||
|
public bool IsAcceleratorKeyEnabled { get; set; }
|
|||
|
}
|
|||
|
}
|