unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
15 lines • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Pat {
constructor({ id, userId, expiresAt, seenAt, createdAt, secret, description, }) {
this.id = id;
this.secret = secret;
this.userId = userId;
this.expiresAt = expiresAt;
this.seenAt = seenAt;
this.createdAt = createdAt;
this.description = description;
}
}
exports.default = Pat;
//# sourceMappingURL=pat.js.map