MoveCommand

This commit is contained in:
2023-07-04 22:07:11 +02:00
parent 718fd53026
commit 453834646b
17 changed files with 263 additions and 22 deletions

View File

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