media_player_client/src/entities/WindowOtherStateChangeNotif...

10 lines
234 B
TypeScript
Raw Normal View History

2021-08-09 10:59:16 +08:00
import { Protocol } from "./WSProtocol";
export default class WindowOtherStateChangeNotifyEntity extends Protocol.PacketEntity {
window_id: number = 0;
playing = false;
focus = false;
muted = false;
2021-12-23 09:28:21 +08:00
volume = 80;
2021-08-09 10:59:16 +08:00
}