Files
syncrow-app/lib/features/devices/model/group_three_gang_model.dart
2024-06-26 22:30:56 +03:00

16 lines
344 B
Dart

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