initial import of support proto

This commit is contained in:
Lex Berezhny 2019-04-15 14:48:12 -04:00
parent 5f1de72fc6
commit 7bf7cc8e09

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;
}