Copy file to clipboard

This commit is contained in:
2023-07-06 22:38:14 +02:00
parent 5c716d5c28
commit ed5d5806ae
10 changed files with 117 additions and 30 deletions

View File

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