mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-27 05:03:26 -08:00
11 lines
226 B
Protocol Buffer
11 lines
226 B
Protocol Buffer
syntax = "proto2";
|
|
import "response.proto";
|
|
|
|
message Response_GetAdminNotes {
|
|
extend Response {
|
|
optional Response_GetAdminNotes ext = 1018;
|
|
}
|
|
optional string user_name = 1;
|
|
optional string notes = 2;
|
|
}
|