mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-01-11 22:40:36 +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;
|
|
int32 lastPageRead = 6;
|
|
int32 dateFetch = 7;
|
|
int32 dateUpload = 8;
|
|
float chapterNumber = 9;
|
|
int32 sourceOrder = 10;
|
|
int32 lastModifiedAt = 11;
|
|
int32 version = 12;
|
|
}
|