bfr/BFR/Operations/OperationMode.cs
adroslice c519147302 Added Replace-Operation, structuring and reworked event bindings
- Added Replace-Operation + UI
- Added OperationMode to make it easier to give operations different modes
- Replaced all specific-control-event-handlers with one general PropertyChanged-event-handler for each preview and filter
- TODO: Add Remove-Operation as a subclass of Replace
2019-11-17 16:22:19 +01:00

12 lines
245 B
C#

namespace BFR.Operations
{
public class OperationMode
{
public int Index { get; }
public string Name { get; }
public OperationMode(int index, string name) =>
(Index, Name) = (index, name);
}
}