mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 21:34:54 +00:00
two touch & three touch
This commit is contained in:
15
lib/features/devices/model/group_three_touch_model.dart
Normal file
15
lib/features/devices/model/group_three_touch_model.dart
Normal file
@ -0,0 +1,15 @@
|
||||
class GroupThreeTouchModel {
|
||||
final String deviceId;
|
||||
final String deviceName;
|
||||
bool firstSwitch;
|
||||
bool secondSwitch;
|
||||
bool thirdSwitch;
|
||||
|
||||
GroupThreeTouchModel({
|
||||
required this.deviceId,
|
||||
required this.deviceName,
|
||||
required this.firstSwitch,
|
||||
required this.secondSwitch,
|
||||
required this.thirdSwitch,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user