mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
16 lines
387 B
Protocol Buffer
16 lines
387 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
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;
|
|
optional int64 invalid_tracks = 6;
|
|
}
|