mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-17 02:25:31 +00:00
Merged with latest changes
This commit is contained in:
@ -45,10 +45,11 @@ class LoadAutomation extends RoutineEvent {
|
||||
}
|
||||
|
||||
class AddFunctionToRoutine extends RoutineEvent {
|
||||
final DeviceFunctionData function;
|
||||
const AddFunctionToRoutine(this.function);
|
||||
final List<DeviceFunctionData> functions;
|
||||
final String uniqueCustomId;
|
||||
const AddFunctionToRoutine(this.functions, this.uniqueCustomId);
|
||||
@override
|
||||
List<Object> get props => [function];
|
||||
List<Object> get props => [functions];
|
||||
}
|
||||
|
||||
class RemoveFunction extends RoutineEvent {
|
||||
|
Reference in New Issue
Block a user