Files
syncrow-web/lib/pages/device_managment/wall_sensor/bloc/event.dart
2024-08-26 15:35:18 +03:00

20 lines
463 B
Dart

import 'package:equatable/equatable.dart';
abstract class WallSensorEvent extends Equatable {
const WallSensorEvent();
@override
List<Object> get props => [];
}
class WallSensorInitialEvent extends WallSensorEvent {}
class WallSensorChangeValueEvent extends WallSensorEvent {
final int value;
final String code;
const WallSensorChangeValueEvent({required this.value, required this.code});
@override
List<Object> get props => [value, code];
}