Skip to content

Instantly share code, notes, and snippets.

@bithavoc
Created February 12, 2014 16:04
Show Gist options
  • Save bithavoc/8958431 to your computer and use it in GitHub Desktop.
Save bithavoc/8958431 to your computer and use it in GitHub Desktop.
/**
JSON type enumeration
*/
enum JSON_TYPE : byte
{
/// Indicates the type of a $(D JSONValue).
STRING,
INTEGER, /// ditto
UINTEGER,/// ditto
FLOAT, /// ditto
OBJECT, /// ditto
ARRAY, /// ditto
TRUE, /// ditto
FALSE, /// ditto
NULL /// ditto
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment