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