librespot/protocol/proto/recently_played.proto
2024-12-16 22:57:12 +01:00

13 lines
226 B
Protocol Buffer

// Extracted from: Spotify 1.2.52.442 (windows)
syntax = "proto3";
package spotify.recently_played.proto;
option optimize_for = CODE_SIZE;
message Item {
string uri = 1;
int64 timestamp = 2;
bool hidden = 3;
}