9 lines
183 B
Protocol Buffer
9 lines
183 B
Protocol Buffer
syntax = "proto2";
|
|
import "session_event.proto";
|
|
|
|
message Event_UserLeft {
|
|
extend SessionEvent {
|
|
optional Event_UserLeft ext = 1008;
|
|
}
|
|
optional string name = 1;
|
|
}
|