9 lines
191 B
C#
9 lines
191 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public class DecoratorService<T> :
|
|
IDecoratorService<T>
|
|
{
|
|
public T? Service { get; private set; }
|
|
|
|
public void Set(T value) => Service = value;
|
|
} |