mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
23 lines
601 B
JavaScript
23 lines
601 B
JavaScript
"use strict";
|
|
|
|
import { MetadataType } from "../enums";
|
|
|
|
export default class MusicTrackMediaMetadata {
|
|
constructor () {
|
|
this.albumArtist = null;
|
|
this.albumName = null;
|
|
this.artist = null;
|
|
this.artistName = null;
|
|
this.composer = null;
|
|
this.discNumber = null;
|
|
this.images = null;
|
|
this.metadataType = MetadataType.MUSIC_TRACK;
|
|
this.releaseDate = null;
|
|
this.releaseYear = null;
|
|
this.songName = null;
|
|
this.title = null;
|
|
this.trackNumber = null;
|
|
this.type = MetadataType.MUSIC_TRACK;
|
|
}
|
|
}
|