chore: add iconAvailable to ScraperInfo

This commit is contained in:
Bronya-Rand 2024-04-27 21:43:53 +01:00
parent be4b20af97
commit 8324632e4e
1 changed files with 2 additions and 1 deletions

View File

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