Welcome to mirror list, hosted at ThFree Co, Russian Federation.

JaggedArray.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2efe77f2c98c0dfa108939a5bb58234950b6807e (plain)
1
2
3
4
5
6
7
8
9
namespace Newtonsoft.Json.Tests.TestObjects
{
  public class JaggedArray
  {
    public string Before { get; set; }
    public int[][] Coordinates { get; set; }
    public string After { get; set; }
  }
}