Bug fixes

This commit is contained in:
TheXamlGuy
2024-07-05 21:57:01 +01:00
parent f937a1d999
commit 5654b86cea
10 changed files with 27 additions and 24 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
public class DecoratorService<T> :
IDecoratorService<T>
{
public T? Service { get; private set; }
public T? Value { get; private set; }
public void Set(T value) => Service = value;
public void Set(T? value) => Value = value;
}