Files
syncrow-app/lib/features/devices/model/group_three_gang_model.dart
2024-07-14 02:01:36 +03:00

16 lines
326 B
Dart

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