Shortcuts for command palette entries

This commit is contained in:
2023-07-29 21:15:16 +02:00
parent 05301f09c8
commit a537277546
5 changed files with 54 additions and 17 deletions

View File

@@ -2,6 +2,7 @@
public interface ICommandPaletteEntryViewModel
{
string Identifier { get; set; }
string Title { get; set; }
string Identifier { get; }
string Title { get; }
string Shortcuts { get; }
}