sistemato assets, finito creazione company, inizio lavoro store

This commit is contained in:
2026-04-09 11:30:57 +02:00
parent 0033a0aee6
commit 510d8e6f15
19 changed files with 524 additions and 231 deletions

View File

@@ -0,0 +1,16 @@
part of 'store_bloc.dart';
abstract class StoreEvent extends Equatable {
const StoreEvent();
@override
List<Object?> get props => [];
}
class CreateStoreRequested extends StoreEvent {
final StoreModel store;
const CreateStoreRequested({required this.store});
@override
List<Object?> get props => [store];
}