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
+8
View File
@@ -0,0 +1,8 @@
namespace Toolkit.Foundation;
public interface IDecoratorService<T>
{
T? Value { get; }
void Set(T value);
}