13 lines
295 B
C#
13 lines
295 B
C#
namespace FileTime.App.Core.UserCommand;
|
|
|
|
public sealed class CopyCommand : IIdentifiableUserCommand
|
|
{
|
|
public const string CommandName = "copy";
|
|
public static CopyCommand Instance { get; } = new();
|
|
|
|
private CopyCommand()
|
|
{
|
|
}
|
|
|
|
public string UserCommandID => CommandName;
|
|
} |