30 lines
621 B
JavaScript
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;
|
|
}
|
|
}
|