export class StorageModel { jsonString: string fileName: string storagePath: string[] storageRootDir: string constructor(jsonString: string, fileName: string, storagePath: string[], storageRootDir: string) { this.jsonString = jsonString; this.fileName = fileName; this.storagePath = storagePath; this.storageRootDir = storageRootDir; } }