using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Get.the.Solution.DataStructure { /// /// /// /// The Type of the Data which should be used in the DataStructure public interface IData : ICovariant { D Value { get; } } }