From 7bf7cc8e09ccf8b439c299e98f5a151ab72e6a77 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 15 Apr 2019 14:48:12 -0400 Subject: [PATCH] initial import of support proto --- v2/proto/support.proto | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 v2/proto/support.proto 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; +}