All files
[pithos-ms-client] / trunk / Libraries / Json40r2 / Source / Src / Newtonsoft.Json.Tests / TestObjects / ContentSubClass.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace Newtonsoft.Json.Tests.TestObjects
7 {
8   public class ContentSubClass : ContentBaseClass
9   {
10     public ContentSubClass() { }
11     public ContentSubClass(string EasyIn)
12     {
13       SomeString = EasyIn;
14     }
15
16     public string SomeString { get; set; }
17   }
18 }