using System; namespace Substrate.Core { /// /// An interface that exposes an for the object. /// public interface IItemContainer { /// /// Gets an associated with the object. /// ItemCollection Items { get; } } }