"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Video = void 0;
class Video {
constructor(name, videoUrl, vivoUrl) {
this.filename = name;
this.videoUrl = videoUrl;
this.vivoUrl = vivoUrl;
}
}
exports.Video = Video;