This commit is contained in:
Hri7566 2022-05-24 20:26:04 +02:00
parent 257bb0ed5e
commit 5ddb9a18eb
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
module.exports = class Crown {
class Crown {
constructor (id, _id) {
this.participantId = id;
this.userId = _id;
@ -17,3 +17,6 @@ module.exports = class Crown {
return Math.floor(Math.random() * 10000) / 100;
}
}
module.exports = Crown;