ac batch control design

This commit is contained in:
ashrafzarkanisala
2024-09-12 11:49:57 +03:00
parent 3171916faf
commit 222331f107
4 changed files with 117 additions and 2 deletions

View File

@ -16,6 +16,15 @@ class AcFetchDeviceStatus extends AcsEvent {
List<Object> get props => [deviceId];
}
class AcFetchBatchStatus extends AcsEvent {
final String deviceId;
const AcFetchBatchStatus(this.deviceId);
@override
List<Object> get props => [deviceId];
}
class AcControl extends AcsEvent {
final String deviceId;
final String code;