deargui-vpl/applications/protos/parameter.proto
2026-02-03 18:25:25 +01:00

13 lines
195 B
Protocol Buffer

syntax = "proto3";
package nodehub;
message ParameterValue {
oneof value {
int32 int_val = 1;
float float_val = 2;
bool bool_val = 3;
string string_val = 4;
}
}