mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 21:35:32 +00:00
18 lines
411 B
Dart
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,
|
|
});
|
|
}
|