Files
Toolkit2/Toolkit.Foundation/IDecoratorService.cs
T
2024-06-04 12:14:00 +01:00

8 lines
121 B
C#

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