Added ICollectionSynchronization
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public class DecoratorService<T> :
|
||||
IDecoratorService<T>
|
||||
{
|
||||
public T? Value { get; private set; }
|
||||
|
||||
public void Set(T value) => Value = value;
|
||||
}
|
||||
Reference in New Issue
Block a user