using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Newtonsoft.Json.Tests.TestObjects { public class GenericListAndDictionaryInterfaceProperties { public IEnumerable IEnumerableProperty { get; set; } public IList IListProperty { get; set; } public IDictionary IDictionaryProperty { get; set; } } }