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