Implement Two-Gang & One-Gang

This commit is contained in:
mohammad
2024-09-12 16:59:03 +03:00
parent 76be98354b
commit b5842194ff
23 changed files with 2308 additions and 4 deletions

View File

@ -0,0 +1,13 @@
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,
});
}