It it now possible to create/edit item contents

This commit is contained in:
TheXamlGuy
2024-06-06 20:42:24 +01:00
parent cc79be9acc
commit 85a5ee078d
5 changed files with 18 additions and 5 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
public interface IDecoratorService<T>
{
T? Value { get; }
T? Service { get; }
void Set(T value);
void Set(T service);
}