8 lines
129 B
C#
8 lines
129 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IScopedServiceDescriptor<T>
|
|
{
|
|
T? Value { get; }
|
|
|
|
void Set(T? value);
|
|
} |