mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
22 lines
486 B
Protocol Buffer
22 lines
486 B
Protocol Buffer
|
// Extracted from: Spotify 1.1.61.583 (Windows)
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package spotify.your_library.proto;
|
||
|
|
||
|
import "your_library_index.proto";
|
||
|
import "collection_index.proto";
|
||
|
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
|
||
|
message YourLibraryEntity {
|
||
|
bool pinned = 1;
|
||
|
|
||
|
oneof entity {
|
||
|
collection.proto.CollectionAlbumEntry album = 2;
|
||
|
YourLibraryArtistEntity artist = 3;
|
||
|
YourLibraryRootlistEntity rootlist_entity = 4;
|
||
|
YourLibraryShowEntity show = 5;
|
||
|
}
|
||
|
}
|