Files
linux-packaging-mono/external/Newtonsoft.Json/Src/Newtonsoft.Json.Tests/TestObjects/ContentSubClass.cs

14 lines
280 B
C#
Raw Normal View History

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