mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-06 03:50:06 +02:00

* update protobuf definitions * add additionally required proto files * update version.rs * adjust code to protobuf changes * fix formatting * apply suggestions, improve errors
21 lines
479 B
Protocol Buffer
21 lines
479 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.playlist.cosmos.proto;
|
|
|
|
option java_multiple_files = true;
|
|
option optimize_for = CODE_SIZE;
|
|
option java_package = "com.spotify.playlist.policy.proto";
|
|
|
|
message FolderDecorationPolicy {
|
|
bool row_id = 1;
|
|
bool id = 2;
|
|
bool link = 3;
|
|
bool name = 4;
|
|
bool folders = 5;
|
|
bool playlists = 6;
|
|
bool recursive_folders = 7;
|
|
bool recursive_playlists = 8;
|
|
bool rows = 9;
|
|
}
|