Condition.cs 140 B

12345678910111213
  1. using System;
  2. namespace LitJson
  3. {
  4. internal enum Condition
  5. {
  6. InArray,
  7. InObject,
  8. NotAProperty,
  9. Property,
  10. Value
  11. }
  12. }