first commit with existing project files

This commit is contained in:
Vincent Guillet
2025-07-12 11:17:34 +02:00
commit 96bdccfe9f
8 changed files with 412 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
export class Track {
constructor(name, url) {
this.name = name;
this.url = url;
}
get name() {
return this._name;
}
set name(value) {
this._name = value;
}
get url() {
return this._url;
}
set url(value) {
this._url = value;
}
}