simplified support to just be a string as first value (emoji)
This commit is contained in:
parent
7bf7cc8e09
commit
366870b286
1 changed files with 9 additions and 4 deletions
|
@ -3,12 +3,16 @@ syntax = "proto3";
|
|||
package pb;
|
||||
|
||||
message Support {
|
||||
oneof type {
|
||||
Edit edit = 1;
|
||||
Comment comment = 2;
|
||||
}
|
||||
string emoji = 1;
|
||||
/*
|
||||
oneof type {
|
||||
Edit edit = 1;
|
||||
Comment comment = 2;
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/*
|
||||
message Edit {
|
||||
string key = 1;
|
||||
string value = 2;
|
||||
|
@ -17,3 +21,4 @@ message Edit {
|
|||
message Comment {
|
||||
string body = 1;
|
||||
}
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue