aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/DataStore/GetDataStoreItemResponse.proto
blob: 9445a6fd9da450b58c871249fa560f64af62d418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto3";

import "DataStoreItem.proto";

package Tango.PMR.DataStore;
option java_package = "com.twine.tango.pmr.datastore";

message GetDataStoreItemResponse
{
	string Key = 1;
	DataStoreItem Item = 2;
}