Ported MetaDataModel to protobuf
This commit is contained in:
parent
e77990a86a
commit
56ca796df0
7 changed files with 54 additions and 6 deletions
|
@ -2,9 +2,11 @@ syntax = "proto3";
|
|||
|
||||
package ESGRAF48;
|
||||
|
||||
import "MetaDataModel.proto";
|
||||
import "V2SvkModel.proto";
|
||||
|
||||
message DataModel
|
||||
{
|
||||
MetaDataModel MetaData = 1;
|
||||
V2SvkModel V2Svk = 2;
|
||||
}
|
||||
|
|
12
proto/MetaDataModel.proto
Normal file
12
proto/MetaDataModel.proto
Normal file
|
@ -0,0 +1,12 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package ESGRAF48;
|
||||
|
||||
message MetaDataModel
|
||||
{
|
||||
string ParticipantName = 1;
|
||||
string InstructorName = 2;
|
||||
string DateOfBirth = 3;
|
||||
string DateOfTest = 4;
|
||||
string Remarks = 5;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue