mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
16 lines
326 B
Dart
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,
|
|
});
|
|
}
|