5.6.2.0 Beta

This commit is contained in:
stax76
2022-03-05 21:05:50 +01:00
parent 9377804b06
commit c56855bbc7
6 changed files with 37 additions and 5 deletions

View File

@@ -233,6 +233,14 @@ namespace mpvnet
public class CommandPaletteItem
{
public CommandPaletteItem() {}
public CommandPaletteItem(string text, Action action)
{
Text = text;
Action = action;
}
public string Text { get; set; } = "";
public string SecondaryText { get; set; } = "";
public Action Action { get; set; }