mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 18:16:21 +00:00
22 lines
355 B
Dart
22 lines
355 B
Dart
class ACModel {
|
|
final String name;
|
|
final String id;
|
|
late bool status;
|
|
late double temperature;
|
|
|
|
late int fanSpeed;
|
|
|
|
late int tempMode;
|
|
|
|
bool isSelected = false;
|
|
|
|
ACModel({
|
|
required this.name,
|
|
required this.id,
|
|
required this.status,
|
|
required this.temperature,
|
|
required this.fanSpeed,
|
|
required this.tempMode,
|
|
});
|
|
}
|