JSONBinaryTag.cs 167 B

123456789101112131415
  1. using System;
  2. namespace I2.Loc.SimpleJSON
  3. {
  4. public enum JSONBinaryTag
  5. {
  6. Array = 1,
  7. Class,
  8. Value,
  9. IntValue,
  10. DoubleValue,
  11. BoolValue,
  12. FloatValue
  13. }
  14. }