ConceptCreator/app/StorageModel.ts

13 lines
262 B
TypeScript
Raw Normal View History

class StorageModel {
jsonString: string
fileName: string
storageDir: string
constructor(jsonString: string, fileName: string, storageDir: string) {
this.jsonString = jsonString;
this.fileName = fileName;
this.storageDir = storageDir;
}
}