RSSHub/lib/routes/linkedin/models.ts

14 lines
348 B
TypeScript

class Job {
constructor(title, link, company, location, pubDate, recruiter, description) {
this.title = title;
this.link = link;
this.company = company;
this.location = location;
this.pubDate = pubDate;
this.recruiter = recruiter;
this.description = description;
}
}
export { Job };