Files
2026-02-21 16:45:37 +08:00

12 lines
132 B
C#

namespace LitJson
{
internal enum Condition
{
InArray = 0,
InObject = 1,
NotAProperty = 2,
Property = 3,
Value = 4
}
}