| Current Path : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/node/rest/1/ |
| Current File : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/node/rest/1/devs.js |
const dev = class Developer {
constructor(id, name, technologies, team) {
this.id = id;
this.name = name;
this.technologies = technologies;
this.team = team;
}
}
module.exports = dev;