mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
13 lines
292 B
Protocol Buffer
13 lines
292 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package spotify.player.proto.state_restore;
|
|
|
|
import "context.proto";
|
|
import "state_restore/context_player_state.proto";
|
|
|
|
message PlayerSessionFake {
|
|
required ContextPlayerState player_state = 1;
|
|
required Context player_context = 2;
|
|
required bool is_finished = 3;
|
|
}
|
|
|