program-item.js 906 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PROGRAM_ITEM_TYPE_SLIDESHOW = "slideshow";
exports.PROGRAM_ITEM_TYPE_VIDEO = "video";
var ProgramItem = (function () {
    function ProgramItem() {
        this._type = "";
        this._data = {};
    }
    Object.defineProperty(ProgramItem.prototype, "type", {
        get: function () {
            return this._type;
        },
        set: function (t) {
            this._type = t;
        },
        enumerable: true,
        configurable: true
    });
    Object.defineProperty(ProgramItem.prototype, "data", {
        get: function () {
            return this._data;
        },
        set: function (d) {
            this._data = d;
        },
        enumerable: true,
        configurable: true
    });
    return ProgramItem;
}());
exports.ProgramItem = ProgramItem;
//# sourceMappingURL=program-item.js.map