Fixed formatting

This commit is contained in:
ltctceplrm 2023-12-09 23:39:25 +01:00
parent 5f6f875b86
commit e13d9e56c0
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ import { MediaType } from '../utils/MediaType';
export class BookModel extends MediaTypeModel {
author: string;
plot:string;
plot: string;
pages: number;
image: string;
onlineRating: number;

View file

@ -66,4 +66,4 @@ export class MovieModel extends MediaTypeModel {
getSummary(): string {
return this.englishTitle + ' (' + this.year + ')';
}
}
}