Files
syncrow-app/lib/features/devices/model/device_model.dart
Mohammad Salameh b3fcca639a Removed location from models
Added the spaces models
Added the rooms models
Added the Spaces cubit
Implemented the home dropdown functionality
2024-03-06 21:34:23 +03:00

19 lines
353 B
Dart

abstract class DeviceModel {
final String? id;
final String? name;
final String? type;
bool? status;
final String? image;
final double? timer;
bool isSelected = false;
DeviceModel({
required this.id,
required this.name,
required this.type,
required this.status,
required this.image,
required this.timer,
});
}