Files
ResInsight/ApplicationCode/GrpcInterface/GrpcProtos/CaseInfo.proto
Gaute Lindkvist 922386c673 #4416 First implementation of gRPC-based Python interface
First implementation with Asynchronous gRPC server, a few services and some client python code.
2019-05-20 13:21:02 +02:00

31 lines
371 B
Protocol Buffer

syntax = "proto3";
package rips;
message Case {
int32 id = 1;
}
message CaseInfo
{
int32 id = 1;
int32 group_id = 2;
string name = 3;
string type = 4;
}
message CaseInfos
{
repeated CaseInfo case_info = 1;
}
message CaseGroup
{
int32 id = 1;
string name = 2;
}
message CaseGroups
{
repeated CaseGroup case_group = 1;
}