Decompress command
This commit is contained in:
@@ -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";
|
||||
}
|
||||
Reference in New Issue
Block a user