Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / System.Json / System.Json / JsonType.cs
1 namespace System.Json
2 {
3         public enum JsonType
4         {
5                 String,
6                 Number,
7                 Object,
8                 Array,
9                 Boolean,
10         }
11 }