mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-17 02:25:31 +00:00
Implemented side tree to devices and rountines screen
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
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,
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user