mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-24 04:22:18 +00:00
34 lines
962 B
Protocol Buffer
34 lines
962 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "BackupEpisode.proto";
|
|
import "BackupHistory.proto";
|
|
|
|
message BackupAnime {
|
|
int64 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;
|
|
int64 dateAdded = 13;
|
|
repeated BackupEpisode episodes = 16;
|
|
repeated int64 categories = 17;
|
|
bool favorite = 100;
|
|
int32 episodeFlags = 101;
|
|
optional int32 viewer_flags = 103;
|
|
repeated BackupHistory history = 104;
|
|
int32 updateStrategy = 105;
|
|
int64 lastModifiedAt = 106;
|
|
optional int64 favoriteModifiedAt = 107;
|
|
int64 version = 109;
|
|
optional string backgroundUrl = 500;
|
|
optional int64 parentId = 502;
|
|
optional int64 id = 503;
|
|
int64 seasonFlags = 504;
|
|
double seasonNumber = 505;
|
|
int64 seasonSourceOrder = 506;
|
|
int32 fetchType = 507;
|
|
}
|