Files
Toolkit2/Toolkit.Foundation/IDecoratorService.cs
T
2024-06-06 20:42:24 +01:00

8 lines
125 B
C#

namespace Toolkit.Foundation;
public interface IDecoratorService<T>
{
T? Service { get; }
void Set(T service);
}