mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-01-11 22:40:36 +00:00
22 lines
587 B
Protocol Buffer
22 lines
587 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "BackupEpisode.proto";
|
|
import "BackupHistory.proto";
|
|
|
|
message BackupAnime {
|
|
int32 source = 1;
|
|
string url = 2;
|
|
string title = 3;
|
|
optional string artist = 4;
|
|
optional string author = 5;
|
|
optional string description = 6;
|
|
repeated string genre = 7;
|
|
int32 status = 8;
|
|
optional string thumbnailUrl = 9;
|
|
int32 dateAdded = 13;
|
|
repeated BackupEpisode episodes = 16;
|
|
repeated int32 categories = 17;
|
|
optional int32 viewer_flags = 103;
|
|
repeated BackupHistory history = 104;
|
|
optional int32 lastModifiedAt = 106;
|
|
}
|