chore: add iconAvailable to ScraperInfo
This commit is contained in:
parent
be4b20af97
commit
8324632e4e
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue