gogo-dl
Version:
<h1 align="center">gogo-dl</h1> <p align="center"> <b> Powerful, lightweight, user-friendly tool for downloading anime.</b> </p>
22 lines (21 loc) • 810 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MetaData = void 0;
//TODO add in status plotSummary and genre
var MetaData = /** @class */ (function () {
function MetaData(lastEpisode, type, plotSummary, genre, released, status) {
if (lastEpisode === void 0) { lastEpisode = 0; }
if (type === void 0) { type = ''; }
if (plotSummary === void 0) { plotSummary = ''; }
if (genre === void 0) { genre = ''; }
if (released === void 0) { released = 0; }
if (status === void 0) { status = ''; }
this.lastEpisode = lastEpisode;
this.status = status;
this.plotSummary = plotSummary;
this.genre = genre;
this.released = released;
}
return MetaData;
}());
exports.MetaData = MetaData;