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