Added online rating
This commit is contained in:
parent
03d1c1dc7d
commit
4968c491dc
2 changed files with 4 additions and 3 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue