10 lines
No EOL
236 B
JavaScript
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
|
|
}
|
|
|
|
} |