Aditya Siregar 73320561b0 first commit
2025-07-30 22:38:44 +07:00

8 lines
194 B
Dart

part of 'get_table_bloc.dart';
@freezed
class GetTableEvent with _$GetTableEvent {
const factory GetTableEvent.started() = _Started;
const factory GetTableEvent.getTables() = _GetTables;
}