Added Scoped Handlers
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public class ScopedServiceDescriptor<T> :
|
||||
IScopedServiceDescriptor<T>
|
||||
{
|
||||
public T? Value { get; private set; }
|
||||
|
||||
public void Set(T? value) => Value = value;
|
||||
}
|
||||
Reference in New Issue
Block a user