using Terminal.Gui.Analyzers.Internal.Attributes;
namespace Terminal.Gui;
///
/// Describes whether an operation should add or subtract values.
///
[GenerateEnumExtensionMethods]
public enum AddOrSubtract
{
///
/// The operation should use addition.
///
Add = 0,
///
/// The operation should use subtraction.
///
Subtract = 1
}