Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GenericListAndDictionaryInterfaceProperties.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5514778d1a6f1d3a97df4d0d63f1273eea8ff895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Newtonsoft.Json.Tests.TestObjects
{
  public class GenericListAndDictionaryInterfaceProperties
  {
    public IEnumerable<int> IEnumerableProperty { get; set; }
    public IList<int> IListProperty { get; set; }
    public IDictionary<string, int> IDictionaryProperty { get; set; }
  }
}