13 lines
192 B
Protocol Buffer
13 lines
192 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ESGRAF48;
|
||
|
|
||
|
message MetaDataModel
|
||
|
{
|
||
|
string ParticipantName = 1;
|
||
|
string InstructorName = 2;
|
||
|
string DateOfBirth = 3;
|
||
|
string DateOfTest = 4;
|
||
|
string Remarks = 5;
|
||
|
}
|