refactor: save current workspace state including FinlyticAnalyzer fixes, FinlyticApp trade route alignment, and DTO audit documentation

This commit is contained in:
2026-08-12 18:30:42 +02:00
parent a9553e9fbf
commit 3d8af3940b
163 changed files with 3421 additions and 1751 deletions
@@ -7,7 +7,15 @@ abstract class CalendarEvent extends Equatable {
List<Object?> get props => [];
}
class FetchCalendarEvents extends CalendarEvent {}
class FetchCalendarEvents extends CalendarEvent {
final int year;
final int month;
const FetchCalendarEvents({required this.year, required this.month});
@override
List<Object?> get props => [year, month];
}
class FilterCategoryChanged extends CalendarEvent {
final String category;