Files
syncrow-app/lib/features/devices/model/group_three_touch_model.dart
2024-10-01 16:24:36 +03:00

16 lines
328 B
Dart

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