7 lines
78 B
JavaScript
7 lines
78 B
JavaScript
class Stray {
|
|
constructor(id) {
|
|
this.id = id;
|
|
}
|
|
}
|
|
|
|
module.exports = Stray; |