Added online rating

This commit is contained in:
ltctceplrm 2023-09-23 03:21:03 +02:00
parent 03d1c1dc7d
commit 4968c491dc
2 changed files with 4 additions and 3 deletions

View file

@ -4,8 +4,9 @@ import { MediaType } from '../utils/MediaType';
export class BookModel extends MediaTypeModel {
author: string;
pages: string;
pages: number;
image: string;
onlineRating: number;
english_title: string;
released: boolean;
@ -22,6 +23,7 @@ export class BookModel extends MediaTypeModel {
this.author = undefined;
this.pages = undefined;
this.image = undefined;
this.onlineRating = undefined;
this.released = undefined;