mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
20 lines
392 B
Protocol Buffer
20 lines
392 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package spotify.collection_platform.proto;
|
||
|
|
||
|
option java_package = "com.spotify.collection_platform.esperanto.proto";
|
||
|
option java_multiple_files = true;
|
||
|
option objc_class_prefix = "ESP";
|
||
|
|
||
|
message CollectionPlatformItem {
|
||
|
string uri = 1;
|
||
|
int64 add_time = 2;
|
||
|
}
|
||
|
|
||
|
message CollectionPlatformContextItem {
|
||
|
string uri = 1;
|
||
|
int64 add_time = 2;
|
||
|
string context_uri = 3;
|
||
|
}
|
||
|
|