rsshub
Version:
Make RSS Great Again!
14 lines (12 loc) • 348 B
text/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 };