18 lines
323 B
C#
18 lines
323 B
C#
|
namespace Newtonsoft.Json.Tests.TestObjects
|
|||
|
{
|
|||
|
public class PublicParametizedConstructorTestClass
|
|||
|
{
|
|||
|
private readonly string _name;
|
|||
|
|
|||
|
public PublicParametizedConstructorTestClass(string name)
|
|||
|
{
|
|||
|
_name = name;
|
|||
|
}
|
|||
|
|
|||
|
public string Name
|
|||
|
{
|
|||
|
get { return _name; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|