Files
Toolkit2/Toolkit.Foundation/IScopedServiceDescriptor.cs
2024-12-04 22:35:58 +00:00

8 lines
129 B
C#

namespace Toolkit.Foundation;
public interface IScopedServiceDescriptor<T>
{
T? Value { get; }
void Set(T? value);
}