media_player_client/src/entities/ApplicationConfigEntity.ts
fangxiang 740e831202 增加Cookie检测并提示
文件管理器后缀名过滤改为从服务端获取后缀
2022-06-20 15:45:31 +08:00

35 lines
1.0 KiB
TypeScript

export default class ApplicationConfigEntity {
auto_ip_address: string = "";
ip_address: string = "";
gateway: string = "";
mac_address: string = "";
subnet_mask: string = "";
use_ntp: string = "";
ntp_server: string = "";
ntp_sync_delay: string = "";
time_zone: number = 21;
wall_row: number = 1;
wall_col: number = 1;
tcp_port: string = "";
udp_port: string = "";
websocket_port: string = "";
httpserver_port: string = "";
root_fs_upload_path: string = "";
media_upload_dir: string = "";
power_on_plan: string = "";
graphics_brightness: number = 100;
graphics_contrast: number = 100;
graphics_hue: number = 100;
device_rotate: number = 0;
system_volume: number = 100;
system_muted: number = 0;
output_audio_card: string = "";
application_data_dir: string = "";
runtime_os: string = "";
registered: boolean = false;
hdmi_in_decode_type_1: string | undefined;
device_hdmi_output_count = 1;
video_suffix_filter: string | null = "";
image_suffix_filter: string | null = "";
}