mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
14 lines
271 B
Dart
14 lines
271 B
Dart
class GroupTwoGangModel {
|
|
final String deviceId;
|
|
final String deviceName;
|
|
bool firstSwitch;
|
|
bool secondSwitch;
|
|
|
|
GroupTwoGangModel({
|
|
required this.deviceId,
|
|
required this.deviceName,
|
|
required this.firstSwitch,
|
|
required this.secondSwitch,
|
|
});
|
|
}
|