Files
linux-packaging-mono/external/Newtonsoft.Json/Src/Newtonsoft.Json.Tests/TestObjects/JaggedArray.cs

9 lines
215 B
C#
Raw Normal View History

namespace Newtonsoft.Json.Tests.TestObjects
{
public class JaggedArray
{
public string Before { get; set; }
public int[][] Coordinates { get; set; }
public string After { get; set; }
}
}