9 lines
215 B
C#
9 lines
215 B
C#
|
namespace Newtonsoft.Json.Tests.TestObjects
|
|||
|
{
|
|||
|
public class JaggedArray
|
|||
|
{
|
|||
|
public string Before { get; set; }
|
|||
|
public int[][] Coordinates { get; set; }
|
|||
|
public string After { get; set; }
|
|||
|
}
|
|||
|
}
|