mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
21 lines
407 B
Dart
21 lines
407 B
Dart
abstract class DeviceModel {
|
|
final String? id;
|
|
final String? name;
|
|
final String? type;
|
|
bool? status;
|
|
final String? location;
|
|
final String? image;
|
|
final double? timer;
|
|
bool isSelected = false;
|
|
|
|
DeviceModel({
|
|
required this.id,
|
|
required this.name,
|
|
required this.type,
|
|
required this.status,
|
|
required this.location,
|
|
required this.image,
|
|
required this.timer,
|
|
});
|
|
}
|