playlist structure
This commit is contained in:
parent
7a4c573ce4
commit
6605cc9f6f
1 changed files with 12 additions and 0 deletions
12
src/Structures/Playlist.ts
Normal file
12
src/Structures/Playlist.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import Player from "../Player";
|
||||
|
||||
class Playlist {
|
||||
player: Player;
|
||||
|
||||
constructor(player: Player, data: any) {
|
||||
Object.defineProperty(this, "player", { value: player });
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default Playlist;
|
Loading…
Reference in a new issue