mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-11 18:19:58 +00:00
21 lines
539 B
JavaScript
21 lines
539 B
JavaScript
"use strict";
|
|
|
|
import { MetadataType } from "../enums";
|
|
|
|
export default class TvShowMediaMetadata {
|
|
constructor () {
|
|
this.episode = 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;
|
|
}
|
|
}
|