Copy base64 hash of content

This commit is contained in:
2023-05-12 16:54:35 +02:00
parent 568bfde2fb
commit 0429709175
5 changed files with 45 additions and 2 deletions

View File

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