mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
16 lines
350 B
Protocol Buffer
16 lines
350 B
Protocol Buffer
|
// Extracted from: Spotify 1.1.61.583 (Windows)
|
||
|
|
||
|
syntax = "proto2";
|
||
|
|
||
|
package spotify.event_sender.proto;
|
||
|
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
|
||
|
message LocalFilesImport {
|
||
|
optional int64 tracks = 1;
|
||
|
optional int64 duplicate_tracks = 2;
|
||
|
optional int64 failed_tracks = 3;
|
||
|
optional int64 matched_tracks = 4;
|
||
|
optional string source = 5;
|
||
|
}
|