Navigation commands
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace FileTime.App.Core.UserCommand;
|
||||
|
||||
public class GoToHomeCommand : IIdentifiableUserCommand
|
||||
{
|
||||
public const string CommandName = "go_to_home";
|
||||
public static GoToHomeCommand Instance { get; } = new GoToHomeCommand();
|
||||
|
||||
private GoToHomeCommand()
|
||||
{
|
||||
}
|
||||
|
||||
public string UserCommandID => CommandName;
|
||||
}
|
||||
Reference in New Issue
Block a user