mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-23 11:42:14 +00:00
16 lines
355 B
Protocol Buffer
16 lines
355 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message BackupChapter {
|
|
string url = 1;
|
|
string name = 2;
|
|
optional string scanlator = 3;
|
|
bool read = 4;
|
|
bool bookmark = 5;
|
|
int64 lastPageRead = 6;
|
|
int64 dateFetch = 7;
|
|
int64 dateUpload = 8;
|
|
float chapterNumber = 9;
|
|
int64 sourceOrder = 10;
|
|
int64 lastModifiedAt = 11;
|
|
int64 version = 12;
|
|
}
|