blob: 48164624494f580caa0b5d4d439056f612f9c8ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
syntax = "proto3";
import "DeviceInformation.proto";
package Tango.PMR.Integration;
option java_package = "com.twine.tango.pmr.integration";
message ExternalBridgeLoginResponse
{
bool Authenticated = 1;
string SerialNumber = 2;
PMR.Connection.DeviceInformation DeviceInformation = 3;
}
|