15 lines
416 B
C#
15 lines
416 B
C#
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";
|
|
} |