Files
syncrow-app/lib/features/devices/model/groupTwoGangModel.dart
2024-09-12 16:59:03 +03:00

14 lines
271 B
Dart

class GroupTwoGangModel {
final String deviceId;
final String deviceName;
bool firstSwitch;
bool secondSwitch;
GroupTwoGangModel({
required this.deviceId,
required this.deviceName,
required this.firstSwitch,
required this.secondSwitch,
});
}