chore: add iconAvailable to ScraperInfo

This commit is contained in:
Bronya-Rand 2024-04-27 21:43:53 +01:00
parent be4b20af97
commit 8324632e4e

View File

@ -32,11 +32,12 @@ export class Scraper {
} }
export class ScraperInfo { export class ScraperInfo {
constructor(id, name, description, iconClass) { constructor(id, name, description, iconClass, iconAvailable) {
this.id = id; this.id = id;
this.name = name; this.name = name;
this.description = description; this.description = description;
this.iconClass = iconClass; this.iconClass = iconClass;
this.iconAvailable = iconAvailable;
} }
} }