mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 15:02:07 +00:00
55 lines
796 B
Dart
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 = '',
|
|
});
|
|
}
|