untappd
Version:
15 lines (14 loc) • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Venue {
constructor(rank, name, category, address, firstVisit, lastVisit, checkins) {
this.rank = rank;
this.name = name;
this.category = category;
this.address = address;
this.firstVisit = firstVisit;
this.lastVisit = lastVisit;
this.checkins = checkins;
}
}
exports.Venue = Venue;