mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-04 02:09:26 +02:00
19 lines
399 B
Protocol Buffer
19 lines
399 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto2";
|
|
|
|
package spotify.player.proto.state_restore;
|
|
|
|
import "context_track.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message MftContextHistoryEntry {
|
|
required ContextTrack track = 1;
|
|
required int64 timestamp = 2;
|
|
optional int64 position = 3;
|
|
}
|
|
|
|
message MftContextHistory {
|
|
map<string, MftContextHistoryEntry> lookup = 1;
|
|
}
|