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, }); }