diff --git a/v2/proto/support.proto b/v2/proto/support.proto new file mode 100644 index 0000000..928d51a --- /dev/null +++ b/v2/proto/support.proto @@ -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; +}