This commit is contained in:
mProjectsCode 2022-11-26 16:11:21 +01:00
parent e48963487b
commit f5b9020dc8
16 changed files with 225 additions and 64 deletions

View file

@ -7,9 +7,11 @@ export class MovieModel extends MediaTypeModel {
producer: string;
duration: string;
onlineRating: number;
actors: string[];
image: string;
released: boolean;
streamingServices: string[];
premiere: string;
userData: {
@ -25,9 +27,13 @@ export class MovieModel extends MediaTypeModel {
this.producer = undefined;
this.duration = undefined;
this.onlineRating = undefined;
this.actors = undefined;
this.image = undefined;
this.released = undefined;
this.streamingServices = undefined;
this.premiere = undefined;
this.userData = {
watched: undefined,
lastWatched: undefined,