blob: 6cf07a0c9302c836d3bcb6b68b4e7caaba364dc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
syntax = "proto3";
import "DebugDistributorType.proto";
package Tango.PMR.Debugging;
option java_package = "com.twine.tango.pmr.debugging";
message SetupDebugDisributorsRequest
{
DebugDistributorType DebugDistributor = 1;
bool DistributorActive = 2;
}
|