class Limits {
  const Limits({this.min, this.max});
  
  final double? min;
  final double? max;
}