using System;
using System.Linq;
namespace AntDesignWPF.Converters;
public enum MathOperation
{
Add,
Divide,
Multiply,
Subtract,
Pow
}