mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
16 lines
385 B
Protocol Buffer
16 lines
385 B
Protocol Buffer
|
// Extracted from: Spotify 1.1.61.583 (Windows)
|
||
|
|
||
|
syntax = "proto2";
|
||
|
|
||
|
package spotify.cosmos_util.proto;
|
||
|
|
||
|
option java_multiple_files = true;
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
option java_package = "com.spotify.cosmos.util.proto";
|
||
|
|
||
|
message AlbumCollectionState {
|
||
|
optional string collection_link = 1;
|
||
|
optional uint32 num_tracks_in_collection = 2;
|
||
|
optional bool complete = 3;
|
||
|
}
|