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

PersonPropertyClass.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ad339a88a244f8981e652e4495676b2395983f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Newtonsoft.Json.Tests.TestObjects
{
  public class PersonPropertyClass
  {
    public Person Person { get; set; }

    public PersonPropertyClass()
    {
      Person = new WagePerson();
    }
  }
}