untappd
Version:
13 lines (12 loc) • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class User {
constructor(username, totalBeerCount, uniqueBeerCount, badgeCount, friendCount) {
this.username = username;
this.totalBeerCount = totalBeerCount;
this.uniqueBeerCount = uniqueBeerCount;
this.badgeCount = badgeCount;
this.friendCount = friendCount;
}
}
exports.User = User;