mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
9 lines
172 B
Dart
9 lines
172 B
Dart
part of 'device_managment_bloc.dart';
|
|
|
|
sealed class DeviceManagmentEvent extends Equatable {
|
|
const DeviceManagmentEvent();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|