It it now possible to create/edit item contents
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user