ln.json/JSONTypes.cs

9 lines
119 B
C#

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