media_player_client/src/entities/WindowOtherStateChangeNotif...

12 lines
290 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;
paused = false;
2021-08-09 10:59:16 +08:00
muted = false;
2022-04-27 10:24:21 +08:00
volume = 20;
polling = false;
title = "";
window_type = "EWindowType::Normal";
2021-08-09 10:59:16 +08:00
}