Decompress command

This commit is contained in:
2023-08-22 13:24:52 +02:00
parent 506636789c
commit 5905f62d66
6 changed files with 207 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
using FileTime.App.Core.UserCommand;
namespace FileTime.Tools.Compression;
public class DecompressUserCommand : IIdentifiableUserCommand
{
public const string CommandName = "decompress";
public static readonly DecompressUserCommand Instance = new();
private DecompressUserCommand()
{
}
public string UserCommandID => CommandName;
public string Title => "Select for decompression";
}