12 lines
176 B
JavaScript
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;
|