ln.json/JSONTypes.cs

9 lines
119 B
C#
Raw Normal View History

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