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

ContentSubClass.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 609784d424de1e03c0f3a3f4aaf78319ef1ce1bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Newtonsoft.Json.Tests.TestObjects
{
  public class ContentSubClass : ContentBaseClass
  {
    public ContentSubClass() { }
    public ContentSubClass(string EasyIn)
    {
      SomeString = EasyIn;
    }

    public string SomeString { get; set; }
  }
}