vinmonopolet-ts
Version:
Extracts information on products, categories and stores from Vinmonopolet
16 lines (15 loc) • 397 B
JavaScript
class ProductRelease {
title;
primaryCategoryName;
url;
image;
releaseDate;
constructor(title, primaryCategoryName, url, image, releaseDate) {
this.title = title;
this.primaryCategoryName = primaryCategoryName;
this.url = url;
this.image = image;
this.releaseDate = releaseDate;
}
}
export default ProductRelease;