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; }
}
}