pi-rfid-jukebox/jukebox/library/track.js

12 lines
176 B
JavaScript

"use strict";
class Track {
constructor(tag, uuid, label) {
this.tag = tag;
this.uuid = uuid;
this.label = label;
}
}
module.exports = Track;