Removed nullable

This commit is contained in:
TheXamlGuy
2024-09-29 17:05:47 +01:00
parent c3285f30c7
commit 39f4e28f29
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,5 +4,5 @@ namespace Toolkit.Foundation;
public interface IScopeServiceFactory<TService>
{
(IServiceScope, TService)? Create(params object?[] parameters);
(IServiceScope, TService) Create(params object?[] parameters);
}