customers

This commit is contained in:
2026-04-10 11:11:55 +02:00
parent 8d6e8647b1
commit 810d99626a
6 changed files with 427 additions and 1 deletions

View File

@@ -24,3 +24,11 @@ class SearchCustomersRequested extends CustomerEvent {
final String query;
const SearchCustomersRequested(this.companyId, this.query);
}
class UpdateCustomerRequested extends CustomerEvent {
final CustomerModel customer;
const UpdateCustomerRequested(this.customer);
@override
List<Object?> get props => [customer];
}