|
@@ -3,7 +3,6 @@ import JSZip from "jszip";
|
|
|
|
|
|
|
|
|
export class ServerConfig {
|
|
|
- public buildInfo: string;
|
|
|
public manufacturerName: string;
|
|
|
public productName: string;
|
|
|
public softwareVersion: string;
|
|
@@ -19,7 +18,6 @@ export class ServerConfig {
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
- this.buildInfo = "...";
|
|
|
this.manufacturerName = "...";
|
|
|
this.productName = "...";
|
|
|
this.softwareVersion = "...";
|
|
@@ -54,7 +52,6 @@ export class ServerConfig {
|
|
|
|
|
|
toPlainObject(){
|
|
|
let obj = {
|
|
|
- buildInfo: this.buildInfo,
|
|
|
manufacturerName: this.manufacturerName,
|
|
|
productName: this.productName,
|
|
|
softwareVersion: this.softwareVersion,
|
|
@@ -86,7 +83,6 @@ export class ServerConfig {
|
|
|
|
|
|
|
|
|
export interface ServerConfigOptions {
|
|
|
- buildInfo: string;
|
|
|
manufacturerName: string;
|
|
|
productName: string;
|
|
|
softwareVersion: string;
|