class User { constructor(id, title) { this.id = id; this.title = title; } } module.exports = User;