AddOrSubtract.cs 359 B

1234567891011121314151617
  1. namespace Terminal.Gui;
  2. /// <summary>
  3. /// Describes whether an operation should add or subtract values.
  4. /// </summary>
  5. public enum AddOrSubtract
  6. {
  7. /// <summary>
  8. /// The operation should use addition.
  9. /// </summary>
  10. Add = 0,
  11. /// <summary>
  12. /// The operation should use subtraction.
  13. /// </summary>
  14. Subtract = 1
  15. }