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
@@ -3,7 +3,7 @@
public class DecoratorService<T> :
IDecoratorService<T>
{
public T? Value { get; private set; }
public T? Service { get; private set; }
public void Set(T value) => Value = value;
public void Set(T value) => Service = value;
}