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