Navigation commands

This commit is contained in:
2022-05-24 20:37:12 +02:00
parent cb5260da5d
commit d94d198344
10 changed files with 206 additions and 17 deletions

View File

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