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
@@ -2,7 +2,7 @@
public interface IDecoratorService<T>
{
T? Service { get; }
T? Value { get; }
void Set(T service);
void Set(T? value);
}