Spotify.proto 384 B

123456789101112
  1. syntax = "proto3";
  2. import "customoptions.proto";
  3. import "nanopb.proto";
  4. package sys.spotify;
  5. message config {
  6. option (nanopb_msgopt).packed_struct = true;
  7. option (nanopb_msgopt).msgid = 10038;
  8. bool enabled = 1 [(cust_field).v_bool = true];
  9. uint32 bitrate = 2 [(nanopb).int_size = IS_16];
  10. bool zeroconf = 3 [(cust_field).v_bool = true] ;
  11. uint32 volume = 4 ;
  12. }