mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 15:05:17 +01:00
18 lines
312 B
Protocol Buffer
18 lines
312 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option go_package = "/csproto";
|
|
|
|
message CS_PRTS_MARK_READ {
|
|
string prts_id = 1;
|
|
}
|
|
message CS_PRTS_MARK_TERMINAL_READ {
|
|
string terminal_content_id = 1;
|
|
}
|
|
message CS_PRTS_RICH_CONTENT_READ {
|
|
string id = 1;
|
|
}
|
|
message CS_PRTS_FINISH_INVESTIGATE {
|
|
string id = 1;
|
|
}
|