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

PublicParametizedConstructorTestClass.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cace1ffa63c5b4f1470cb9c57330b5902a36bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Newtonsoft.Json.Tests.TestObjects
{
  public class PublicParametizedConstructorTestClass
  {
    private readonly string _name;

    public PublicParametizedConstructorTestClass(string name)
    {
      _name = name;
    }

    public string Name
    {
      get { return _name; }
    }
  }
}