CommandPalette WIP
This commit is contained in:
@@ -3,4 +3,5 @@ namespace FileTime.App.Core.UserCommand;
|
||||
public interface IIdentifiableUserCommand : IUserCommand
|
||||
{
|
||||
string UserCommandID { get; }
|
||||
//string Title { get; }
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
namespace FileTime.App.Core.UserCommand;
|
||||
|
||||
public class OpenCommandPaletteCommand : IIdentifiableUserCommand
|
||||
{
|
||||
public const string CommandName = "open_command_palette";
|
||||
public static OpenCommandPaletteCommand Instance { get; } = new ();
|
||||
|
||||
private OpenCommandPaletteCommand()
|
||||
{
|
||||
}
|
||||
|
||||
public string UserCommandID => CommandName;
|
||||
}
|
||||
Reference in New Issue
Block a user