untappd
Version:
19 lines (18 loc) • 573 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Beer {
constructor(order, name, brewery, style, abv, ibu, dateFirst, dateRecent, checkins, rating, globalRating) {
this.order = order;
this.name = name;
this.brewery = brewery;
this.style = style;
this.abv = abv;
this.ibu = ibu;
this.dateFirst = dateFirst;
this.dateRecent = dateRecent;
this.checkins = checkins;
this.rating = rating;
this.globalRating = globalRating;
}
}
exports.Beer = Beer;