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

PublicParametizedConstructorWithNonPropertyParameterTestClass.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 694b7a0578a8f012be3b195532b5fc57969e2471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Newtonsoft.Json.Tests.TestObjects
{
  public class PublicParametizedConstructorWithNonPropertyParameterTestClass
  {
    private readonly string _name;

    public PublicParametizedConstructorWithNonPropertyParameterTestClass(string nameParameter)
    {
      _name = nameParameter;
    }

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