blob: 2907cfd363e398ae85ae60151cbcf2ea33cc3933 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
syntax = "proto3";
import "VersionFileDestination.proto";
package Tango.PMR.FirmwareUpgrade;
option java_package = "com.twine.tango.pmr.firmwareupgrade";
message VersionFileDescriptor
{
string FileName = 1;
string Version = 2;
VersionFileDestination Destination = 3;
}
//Do not put type 'bytes' in this file. It will cause the json deserialization to fail !!!
|