1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-06 03:50:06 +02:00
librespot/protocol/proto/policy/folder_decoration_policy.proto
Felix Prillwitz 2a574267ae
Update protobuf files (#1424)
* update protobuf definitions

* add additionally required proto files

* update version.rs

* adjust code to protobuf changes

* fix formatting

* apply suggestions, improve errors
2024-12-24 09:39:49 +01:00

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;
}