Files
HQNode/classes/HQSchedule.js
eTronic 7a74269c24 Initial Commit
Initial Commit
2018-06-24 18:13:38 -04:00

30 lines
621 B
JavaScript

export default class HQSchedule {
constructor({
active,
atCapacity,
showId,
showType,
startTime,
nextShowTime,
nextShowPrize,
upcoming,
prize,
broadcast,
gameKey,
broadcastFull,
}) {
this.active = active;
this.atCapacity = atCapacity;
this.showId = showId;
this.showType = showType;
this.startTime = startTime;
this.nextShowTime = nextShowTime;
this.nextShowPrize = nextShowPrize;
this.upcoming = upcoming;
this.prize = prize;
this.broadcast = broadcast;
this.gameKey = gameKey;
this.broadcastFull = broadcastFull;
}
}