Fix chrome.cast.media class implementations

This commit is contained in:
hensm
2019-01-12 13:47:49 +00:00
parent 536d170d51
commit 8588b856b5
25 changed files with 89 additions and 52 deletions

View File

@@ -1,13 +1,20 @@
"use strict";
import { MetadataType } from "../enums";
export default class TvShowMediaMetadata {
constructor () {
this.episode = null;
this.images = [];
this.metadataType = null;
this.episodeNumber = null;
this.episodeTitle = null;
this.images = null;
this.metadataType = MetadataType.TV_SHOW;
this.originalAirdate = null;
this.releaseYear = null;
this.season = null;
this.seasonNumber = null;
this.seriesTitle = null;
this.title = null;
this.type = MetadataType.TV_SHOW;
}
}