ln.json/JSONTypes.cs

9 lines
122 B
C#
Raw Normal View History

2017-10-26 16:41:14 +02:00
using System;
namespace sharp.json
{
public enum JSONTypes
{
Null, True, False, Object, Array, String, Number
}
}