media_player_client/src/entities/ApplicationConfigEntity.ts

13 lines
328 B
TypeScript
Raw Normal View History

2021-08-05 14:23:45 +08:00
export default class ApplicationConfigEntity {
gateway: string = "";
mac_address: string = "";
network_mask: string = "";
wall_row: number = 1;
wall_col: number = 1;
screen_width: number = 1;
screen_height: number = 1;
tcp_port: string = "";
udp_port: string = "";
websocket_port: string = "";
}