Files
syncrow-web/lib/pages/routiens/models/gang_switches/switch_operational_value.dart
2024-11-21 00:50:06 +03:00

18 lines
352 B
Dart

class SwitchOperationalValue {
final String icon;
final String description;
final dynamic value;
final double? minValue;
final double? maxValue;
final double? stepValue;
SwitchOperationalValue({
required this.icon,
required this.value,
this.description = '',
this.minValue,
this.maxValue,
this.stepValue,
});
}