13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
|
class StorageModel {
|
||
|
jsonString: string
|
||
|
fileName: string
|
||
|
storageDir: string
|
||
|
|
||
|
|
||
|
constructor(jsonString: string, fileName: string, storageDir: string) {
|
||
|
this.jsonString = jsonString;
|
||
|
this.fileName = fileName;
|
||
|
this.storageDir = storageDir;
|
||
|
}
|
||
|
}
|