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: 9f52e98cc98a6c454740b28d1856f10ec6b48482 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

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