ConceptCreator/app/storage/StoredGameModel.js
Sebastian Böckelmann fed0ca99bf
All checks were successful
E2E Testing / test (push) Successful in 1m33s
Persist Itemgroups
2024-05-09 09:12:46 +02:00

14 lines
593 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StoredGameModel = void 0;
class StoredGameModel {
constructor(gameModelName, storedScriptAccounts, storedGamesystems, storedCharacters, storedItemgroups) {
this.gameModelName = gameModelName;
this.storedGamesystems = storedGamesystems;
this.storedScriptAccounts = storedScriptAccounts;
this.storedCharacters = storedCharacters;
this.storedItemgroups = storedItemgroups;
}
}
exports.StoredGameModel = StoredGameModel;
//# sourceMappingURL=StoredGameModel.js.map