ConceptCreator/app/StorageModel.ts
Sebastian Böckelmann 599a7cdd1b
All checks were successful
E2E Testing / test (push) Successful in 1m36s
First solution for storing ScriptAccounts
2024-02-16 21:40:21 +01:00

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;
}
}