Cockatrice/libs/protocol/pb/event_server_shutdown.proto
Lukas Brübach 1d1de904e0 Add a wrapper.
Took 35 minutes
2025-10-04 23:49:11 +02:00

10 lines
230 B
Protocol Buffer

syntax = "proto2";
import "session_event.proto";
message Event_ServerShutdown {
extend SessionEvent {
optional Event_ServerShutdown ext = 1001;
}
optional string reason = 1;
optional uint32 minutes = 2;
}