mediamonkeyserver
Version:
MediaMonkey Server
19 lines (12 loc) • 380 B
JavaScript
/*jslint node: true, esversion: 6 */
;
const Util = require('util');
const Album = require('./object.container.album');
const _UPNP_CLASS = Album.UPNP_CLASS + ".videoAlbum";
class VideoAlbum extends Album {
get name() { return VideoAlbum.UPNP_CLASS; }
static get UPNP_CLASS() {
return _UPNP_CLASS;
}
}
module.exports = VideoAlbum;