mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 18:16:21 +00:00
14 lines
276 B
Dart
14 lines
276 B
Dart
class GroupCurtainModel {
|
|
final String deviceId;
|
|
final String deviceName;
|
|
String firstSwitch;
|
|
int percentControl;
|
|
|
|
GroupCurtainModel({
|
|
required this.deviceId,
|
|
required this.deviceName,
|
|
required this.firstSwitch,
|
|
required this.percentControl,
|
|
});
|
|
}
|