using System.Collections.Generic;
namespace Test
{
public interface IBox
}
public interface IBoxCollection<out T>
where T : IBox
IReadOnlyDictionary<string, T> Collection { get; }