Added isbn field to books
This commit is contained in:
parent
4f09776036
commit
fe9f04126d
2 changed files with 3 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ export class BookModel extends MediaTypeModel {
|
|||
image: string;
|
||||
onlineRating: number;
|
||||
english_title: string;
|
||||
isbn: number;
|
||||
|
||||
released: boolean;
|
||||
|
||||
|
|
@ -25,6 +26,7 @@ export class BookModel extends MediaTypeModel {
|
|||
this.pages = undefined;
|
||||
this.image = undefined;
|
||||
this.onlineRating = undefined;
|
||||
this.isbn = undefined;
|
||||
|
||||
this.released = undefined;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue