initial import of support proto #33

Closed
eukreign wants to merge 1 commit from support_proto into master

19
v2/proto/support.proto Normal file
View file

@ -0,0 +1,19 @@
syntax = "proto3";
package pb;
message Support {
oneof type {
Edit edit = 1;
Comment comment = 2;
}
}
message Edit {
string key = 1;
string value = 2;
}
message Comment {
string body = 1;
}