Files
syncrow-app/lib/features/devices/model/group_two_gang_model.dart
Abdullah Alassaf 62e80c89a2 Bug fixes
2024-09-23 00:35:07 +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,
});
}