Files
kotlin-fork/proto/protofiles_sources/server_client/generic_response.proto
T
2016-08-26 10:30:46 +03:00

9 lines
109 B
Protocol Buffer

syntax = "proto3";
message Result {
int32 errorCode = 1;
}
message GenericResponse {
Result result = 1;
}