Open by path

This commit is contained in:
2022-05-30 17:09:10 +02:00
parent e9ed2c01e6
commit 1a32e97973
12 changed files with 82 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
namespace FileTime.App.Core.UserCommand;
public class GoToPathCommand : IIdentifiableUserCommand
{
public const string CommandName = "go_to_path";
public static GoToPathCommand Instance { get; } = new GoToPathCommand();
private GoToPathCommand()
{
}
public string UserCommandID => CommandName;
}