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