a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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; }
|
|
}
|
|
}
|
|
}
|