export class Game { constructor(deck, hasTimer, hasDedicatedModerator, moderatorName, timerParams=null) { this.deck = deck; this.hasTimer = hasTimer; this.moderatorName = moderatorName; this.timerParams = timerParams; this.hasDedicatedModerator = hasDedicatedModerator; this.accessCode = null; } }