projet-clicodrome2.0/js/collegue.js
2024-12-24 15:22:46 +01:00

10 lines
No EOL
236 B
JavaScript

class Collegue{
constructor(json) {
this.props = json
this.nom = this.props.nom
this.cout = this.props.cout
this.boost = this.props.boost
this.revenu_passif = this.props.revenu_passif
}
}