ln.json/JSONTypes.cs

9 lines
122 B
C#

using System;
namespace sharp.json
{
public enum JSONTypes
{
Null, True, False, Object, Array, String, Number
}
}