12 lines
132 B
C#
12 lines
132 B
C#
namespace LitJson
|
|
{
|
|
internal enum Condition
|
|
{
|
|
InArray = 0,
|
|
InObject = 1,
|
|
NotAProperty = 2,
|
|
Property = 3,
|
|
Value = 4
|
|
}
|
|
}
|