16 lines
184 B
C#
16 lines
184 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public enum condition_output_enum
|
|
{
|
|
add = 0,
|
|
subtract = 1,
|
|
change = 2,
|
|
multiply = 3,
|
|
divide = 4,
|
|
difference = 5,
|
|
average = 6,
|
|
max = 7,
|
|
min = 8
|
|
}
|