two touch & three touch

This commit is contained in:
mohammad
2024-10-01 16:24:36 +03:00
parent b8b6ec67c7
commit d75d438106
33 changed files with 5813 additions and 100 deletions

View File

@ -0,0 +1,13 @@
class GroupTwoTouchModel {
final String deviceId;
final String deviceName;
bool firstSwitch;
bool secondSwitch;
GroupTwoTouchModel({
required this.deviceId,
required this.deviceName,
required this.firstSwitch,
required this.secondSwitch,
});
}