namespace HeuristicLab.JsonInterface.OptimizerIntegration { public class IntArrayValueVM : ArrayValueVM { protected override int MinTypeValue => int.MinValue; protected override int MaxTypeValue => int.MaxValue; } public class IntRangeVM : RangeVM { protected override int MinTypeValue => int.MinValue; protected override int MaxTypeValue => int.MaxValue; } public class IntValueVM : SingleValueVM { protected override int MinTypeValue => int.MinValue; protected override int MaxTypeValue => int.MaxValue; } }