Files
FileTime2/src/AppCommon/FileTime.App.Core.Abstraction/UserCommand/OpenCommandPaletteCommand.cs
2023-07-18 05:52:13 +02:00

13 lines
350 B
C#

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;
}