Skip to content
Snippets Groups Projects
Verified Commit daf705ef authored by Timm Fitschen's avatar Timm Fitschen
Browse files

Add messages to properties ans parernts

parent 029a1971
No related branches found
No related tags found
1 merge request!1ENH: Allow insertion and deletion of single entities
Pipeline #11142 passed with warnings
......@@ -344,6 +344,12 @@ message Property {
string unit = 6;
// Property datatype
string datatype = 7;
// Errors of this property
repeated Message errors = 8;
// Warnings of this property
repeated Message warnings = 9;
// Info messages of this property
repeated Message infos = 10;
}
// Parent of an entity.
......@@ -354,6 +360,12 @@ message Parent {
string name = 2;
// Description of the parent entity.
string description = 3;
// Errors of this parent
repeated Message errors = 4;
// Warnings of this parent
repeated Message warnings = 5;
// Info messages of this parent
repeated Message infos = 6;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment