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
Branches
Tags
1 merge request!1ENH: Allow insertion and deletion of single entities
Pipeline #11142 passed with warnings
...@@ -344,6 +344,12 @@ message Property { ...@@ -344,6 +344,12 @@ message Property {
string unit = 6; string unit = 6;
// Property datatype // Property datatype
string datatype = 7; 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. // Parent of an entity.
...@@ -354,6 +360,12 @@ message Parent { ...@@ -354,6 +360,12 @@ message Parent {
string name = 2; string name = 2;
// Description of the parent entity. // Description of the parent entity.
string description = 3; 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.
Please register or to comment