mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
18 lines
352 B
Dart
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,
|
|
});
|
|
}
|