librespot/protocol/proto/stream_seek_request.proto

17 lines
378 B
Protocol Buffer
Raw Normal View History

2021-12-10 19:33:43 +00:00
// Extracted from: Spotify 1.1.73.517 (macOS)
syntax = "proto3";
package spotify.stream_reporting_esperanto.proto;
import "stream_handle.proto";
option objc_class_prefix = "ESP";
option java_package = "com.spotify.stream_reporting_esperanto.proto";
message StreamSeekRequest {
StreamHandle stream_handle = 1;
2021-12-10 19:33:43 +00:00
uint64 from_position = 3;
uint64 to_position = 4;
}