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 = "";
  httpserver_port: string = "";
  root_fs_upload_path: string = "";
  media_upload_dir: string = "";
}