export default class Product { id = 0; name = ""; description = ""; cents = 0; quantity = 0; featured = false; photo_base = ""; photo_fullsize = ""; photo_thumbnail = ""; category = ""; constructor(json) { Object.assign(this, json); } }