mangayomi-mirror/lib/models/track_search.dart
Moustapha Kodjo Amadou 3e401c8af2 dart format
2025-02-23 15:31:49 +01:00

55 lines
796 B
Dart

class TrackSearch {
int? id;
int? libraryId;
int? mediaId;
int? syncId;
String? title;
int? lastChapterRead;
int? totalChapter;
double? score;
String? status;
int? startedReadingDate;
int? finishedReadingDate;
String? trackingUrl;
String? coverUrl;
String? summary;
String? publishingStatus;
String? publishingType;
String? startDate;
TrackSearch({
this.id,
this.libraryId,
this.mediaId,
this.syncId,
this.title,
this.lastChapterRead,
this.totalChapter,
this.score,
this.status = '',
this.startedReadingDate,
this.finishedReadingDate,
this.trackingUrl,
this.coverUrl = '',
this.publishingStatus = '',
this.publishingType = '',
this.startDate = '',
this.summary = '',
});
}