refactor: save current workspace state including FinlyticAnalyzer fixes, FinlyticApp trade route alignment, and DTO audit documentation
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user