13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
|
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 = "";
|
||
|
}
|