ConceptCreator/app/storage/StoredGameModel.js
Sebastian Böckelmann 1c632c6833
All checks were successful
E2E Testing / test (push) Successful in 1m37s
Ignore PropertyDescription in QualityProperties
2024-04-20 10:28:40 +02:00

14 lines
578 B
JavaScript

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