Added ICollectionSynchronization

This commit is contained in:
TheXamlGuy
2024-06-04 12:14:00 +01:00
parent c13d565e7c
commit 2cf9a19ac7
11 changed files with 109 additions and 23 deletions
+9
View File
@@ -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;
}