1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 02:09:26 +02:00
librespot/protocol/proto/state_restore/mft_context_history.proto
2021-12-10 20:33:43 +01:00

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