9 lines
148 B
C#
9 lines
148 B
C#
|
public sealed class NonSingleton
|
||
|
{
|
||
|
public NonSingleton(string value)
|
||
|
{
|
||
|
Value = value;
|
||
|
}
|
||
|
|
||
|
public string Value { get; set; }
|
||
|
}
|