Support Mod/Admin Notes Section

This commit is contained in:
ZeldaZach 2024-12-28 09:05:06 -05:00
parent 18119bd11b
commit 838e16151f
No known key found for this signature in database
12 changed files with 174 additions and 2 deletions

View file

@ -0,0 +1,10 @@
syntax = "proto2";
import "response.proto";
message Response_GetAdminNotes {
extend Response {
optional Response_GetAdminNotes ext = 1018;
}
optional string user_name = 1;
optional string notes = 2;
}