Refactoring
This commit is contained in:
@@ -298,3 +298,23 @@ class ExportCotisations extends CotisationsEvent {
|
||||
@override
|
||||
List<Object?> get props => [format, cotisations];
|
||||
}
|
||||
|
||||
/// Événement pour charger l'historique des paiements
|
||||
class LoadPaymentHistory extends CotisationsEvent {
|
||||
final String? membreId;
|
||||
final String? period;
|
||||
final String? status;
|
||||
final String? method;
|
||||
final String? searchQuery;
|
||||
|
||||
const LoadPaymentHistory({
|
||||
this.membreId,
|
||||
this.period,
|
||||
this.status,
|
||||
this.method,
|
||||
this.searchQuery,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [membreId, period, status, method, searchQuery];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user