namespace Terminal.Gui.ViewBase;
///
/// Describes whether an operation should add or subtract values.
///
public enum AddOrSubtract
{
///
/// The operation should use addition.
///
Add = 0,
///
/// The operation should use subtraction.
///
Subtract = 1
}