10 lines
117 B
C#
10 lines
117 B
C#
using System;
|
|
|
|
namespace NaughtyAttributes
|
|
{
|
|
public enum ConditionOperator
|
|
{
|
|
And,
|
|
Or
|
|
}
|
|
}
|