Your IP : 216.73.216.175


Current Path : /home/kamilrogam/komp/2018/180513/DARWIN/EDU/node/rest/1/
Upload File :
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;