mangayomi-mirror/lib/modules/tracker_library/tracker_library_section.dart
2025-06-28 00:48:09 +02:00

18 lines
411 B
Dart

import 'package:mangayomi/models/manga.dart';
import 'package:mangayomi/models/track_search.dart';
class TrackLibrarySection {
String name;
Future<List<TrackSearch>?> Function() func;
ItemType itemType;
int syncId;
bool isSearch;
TrackLibrarySection({
required this.name,
required this.func,
required this.syncId,
this.itemType = ItemType.manga,
this.isSearch = false,
});
}