15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
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;
|
|
}
|
|
}
|