servatrice/common/pb/event_notify_user.proto

14 lines
219 B
Protocol Buffer

import "session_event.proto";
message Event_NotifyUser {
enum NotificationType {
PROMOTED = 1;
}
extend SessionEvent {
optional Event_NotifyUser ext = 1010;
}
optional NotificationType type = 1;
}