using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Newtonsoft.Json.Tests.TestObjects { public class HolderClass { public HolderClass() { } [Newtonsoft.Json.JsonProperty(TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All)] public ContentBaseClass TestMember { get; set; } [Newtonsoft.Json.JsonProperty(TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All)] public Dictionary> AnotherTestMember { get; set; } public ContentBaseClass AThirdTestMember { get; set; } } }