12 lines
306 B
Dart
Raw Normal View History

2025-07-30 22:38:44 +07:00
part of 'create_table_bloc.dart';
@freezed
class CreateTableEvent with _$CreateTableEvent {
const factory CreateTableEvent.started() = _Started;
2025-08-03 23:33:00 +07:00
const factory CreateTableEvent.createTable({
required String tableName,
required int capacity,
required String location,
}) = _CreateTable;
2025-07-30 22:38:44 +07:00
}