using System; using System.Windows.Forms; namespace HeuristicLab.JsonInterface.OptimizerIntegration { public class BoolValueVM : JsonItemVMBase { public override UserControl Control => null; } public abstract class SingleValueVM : RangedValueBaseVM where T : IComparable where JsonItemType : class, IIntervalRestrictedJsonItem, IValueJsonItem { } }