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