mirror of
https://github.com/LBRYFoundation/types.git
synced 2025-08-23 09:37:32 +00:00
initial import of support proto
This commit is contained in:
parent
5f1de72fc6
commit
7bf7cc8e09
1 changed files with 19 additions and 0 deletions
19
v2/proto/support.proto
Normal file
19
v2/proto/support.proto
Normal 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;
|
||||
}
|
Loading…
Add table
Reference in a new issue