mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-10 17:49:58 +00:00
Initial commit
This commit is contained in:
17
ext/src/shim/media/classes/MusicTrackMediaMetadata.js
Normal file
17
ext/src/shim/media/classes/MusicTrackMediaMetadata.js
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
|
||||
export default class MusicTrackMediaMetadata {
|
||||
constructor () {
|
||||
this.albumArtist = null;
|
||||
this.albumName = null;
|
||||
this.artist = null;
|
||||
this.composer = null;
|
||||
this.discNumber = null;
|
||||
this.images = [];
|
||||
this.metadataType = this.type = 3;
|
||||
this.releaseDate = null;
|
||||
this.songName = null;
|
||||
this.title = null;
|
||||
this.trackNumber = null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user