2021-03-05 11:27:36 +00:00
|
|
|
import { TAuthor, IComic, TRating, TCategory } from "../../interfaces";
|
|
|
|
export default class Comic implements IComic {
|
2021-03-05 12:05:49 +00:00
|
|
|
genre: string[];
|
|
|
|
pages: string;
|
|
|
|
resolution: string[];
|
|
|
|
authors: TAuthor[];
|
|
|
|
category: TCategory;
|
|
|
|
changelog: string[];
|
|
|
|
cover: string;
|
|
|
|
id: number;
|
|
|
|
lastThreadUpdate: Date;
|
|
|
|
name: string;
|
|
|
|
overview: string;
|
|
|
|
prefixes: string[];
|
|
|
|
rating: TRating;
|
|
|
|
tags: string[];
|
|
|
|
threadPublishingDate: Date;
|
|
|
|
url: string;
|
2021-03-05 11:27:36 +00:00
|
|
|
}
|