9 lines
202 B
C#
9 lines
202 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public class ScopedServiceDescriptor<T> :
|
|
IScopedServiceDescriptor<T>
|
|
{
|
|
public T? Value { get; private set; }
|
|
|
|
public void Set(T? value) => Value = value;
|
|
} |