Files
Toolkit2/Toolkit.Foundation/IDecoratorService.cs
T
TheXamlGuy 5654b86cea Bug fixes
2024-07-05 21:57:01 +01:00

8 lines
122 B
C#

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