All files
[pithos-ms-client] / trunk / Libraries / Json40r2 / Source / Src / Newtonsoft.Json.Tests / TestObjects / GenericListAndDictionaryInterfaceProperties.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 GenericListAndDictionaryInterfaceProperties
9   {
10     public IEnumerable<int> IEnumerableProperty { get; set; }
11     public IList<int> IListProperty { get; set; }
12     public IDictionary<string, int> IDictionaryProperty { get; set; }
13   }
14 }