blob: f916c60fd4d0d23a86e1689b7de9ff3a1a473ffd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubCartridgeWriteResponse
{
uint32 CartridgeId = 1;
string Status = 2; // Passed/Failed
uint32 StatusWord = 3; // Error number/bit when the status is Failed
}
|