9 lines
219 B
C#
9 lines
219 B
C#
|
namespace BFR.Operations
|
|||
|
{
|
|||
|
class Remove : Replace
|
|||
|
{
|
|||
|
public override string Name => nameof(Remove);
|
|||
|
public override string Description => "Removes the selected part of the file name.";
|
|||
|
}
|
|||
|
}
|