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

Container.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fea347fc4297dee198120f0dad3ee7884e9f2d1 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;

namespace Newtonsoft.Json.Tests.TestObjects
{
  public class Container
  {
    public IList<Product> In { get; set; }
    public IList<Product> Out { get; set; }
  }
}