mpp-server-dev2/src/Rank.js

7 lines
118 B
JavaScript
Raw Normal View History

2021-05-09 10:52:41 +02:00
module.exports = class Rank {
constructor (name, _id) {
this.name = name;
this._id = _id;
}
}