namespace HeuristicLab.JsonInterface { public interface IValueJsonItem : IJsonItem { /// /// Represent the value of an IItem. /// object Value { get; set; } } public interface IValueJsonItem : IValueJsonItem { new T Value { get; set; } } }