mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
21 lines
438 B
Protocol Buffer
21 lines
438 B
Protocol Buffer
|
// Extracted from: Spotify 1.1.33.569 (Windows)
|
||
|
|
||
|
syntax = "proto2";
|
||
|
|
||
|
package spotify.collection.proto.storage;
|
||
|
|
||
|
import "collection2.proto";
|
||
|
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
|
||
|
message CollectionHeader {
|
||
|
optional bytes etag = 1;
|
||
|
}
|
||
|
|
||
|
message CollectionCache {
|
||
|
optional CollectionHeader header = 1;
|
||
|
optional CollectionItems collection = 2;
|
||
|
optional CollectionItems pending = 3;
|
||
|
optional uint32 collection_item_limit = 4;
|
||
|
}
|