librespot/protocol/proto/stream_seek_request.proto
2021-12-10 20:33:43 +01:00

17 lines
378 B
Protocol Buffer

// 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;
uint64 from_position = 3;
uint64 to_position = 4;
}