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

namespace Newtonsoft.Json.Tests.TestObjects
{
  public class ContentSubClass : ContentBaseClass
  {
    public ContentSubClass() { }
    public ContentSubClass(string EasyIn)
    {
      SomeString = EasyIn;
    }

    public string SomeString { get; set; }
  }
}