bfr/BFR/Operations/Remove.cs
adroslice 5633cd2afe Added Remove-Operation
- TODO: Find a way to re-use Replace-Operation-UI by omitting the replacement-option
2019-11-17 16:27:40 +01:00

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.";
}
}