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