blob: e6c178083ab37e5c863835c5192dcea099b3524b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
syntax = "proto3";
import "DeviceInformation.proto";
package Tango.PMR.Connection;
option java_package = "com.twine.tango.pmr.connection";
message ConnectResponse
{
DeviceInformation DeviceInformation = 1;
}
|