Files
Northern_Lights da24448000
Some checks failed
deploy and publish / build-and-deploy (push) Has been cancelled
revert 7809924e2d
revert delete all
2026-01-29 09:03:04 +00:00

22 lines
306 B
Protocol Buffer

syntax = "proto3";
package bilibili.broadcast.message.ticket;
//
enum RoomStatus {
// 暂停:
Pause = 0;
// 播放:
Play = 1;
// 终止:
End = 2;
}
// 推送选项
message RoomEvent {
// RoomStatus 类型
RoomStatus room_status = 1;
//
string room_message = 2;
}