25 lines
483 B
Dart
25 lines
483 B
Dart
part of 'account_bloc.dart';
|
|
|
|
sealed class AccountEvent extends Equatable {
|
|
const AccountEvent();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
final class AccountImportCSV extends AccountEvent {
|
|
const AccountImportCSV();
|
|
}
|
|
|
|
final class AccountImportJSON extends AccountEvent {
|
|
const AccountImportJSON();
|
|
}
|
|
|
|
final class AccountExportJSON extends AccountEvent {
|
|
const AccountExportJSON();
|
|
}
|
|
|
|
final class AccountExportCSV extends AccountEvent {
|
|
const AccountExportCSV();
|
|
}
|