14 lines
155 B
C#
14 lines
155 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace AntdWpf.Converters;
|
|
|
|
public enum MathOperation
|
|
{
|
|
Add,
|
|
Divide,
|
|
Multiply,
|
|
Subtract,
|
|
Pow
|
|
}
|