ConceptCreator/src/app/game-model/fs/StorageModel.ts
Sebastian Böckelmann e873688cb7
All checks were successful
E2E Testing / test (push) Successful in 1m28s
Save Gamesystems and Ignore save status and type of saved gamemodelcomponent
2024-02-17 10:13:32 +01:00

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