mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
21 lines
387 B
Protocol Buffer
21 lines
387 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.collection.proto.storage;
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message BanItem {
|
|
required string item_uri = 1;
|
|
required string context_uri = 2;
|
|
required int64 timestamp = 3;
|
|
}
|
|
|
|
message LocalBansTimestamp {
|
|
required int64 timestamp = 1;
|
|
}
|
|
|
|
message Bans {
|
|
repeated BanItem items = 1;
|
|
}
|