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