5633cd2afe
- TODO: Find a way to re-use Replace-Operation-UI by omitting the replacement-option
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.";
|
|
}
|
|
}
|