• This project
    • Loading...
  • Sign in

digsig / digsig-player-service

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • digsig-player-service
  • src
  • program-item
  • program-item.ts
  • Stefan Huber's avatar
    exports · c49550ce
    c49550ce Browse Files
    Stefan Huber authored 2017-01-26 14:02:02 +0100
program-item.ts 410 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
export const PROGRAM_ITEM_TYPE_SLIDESHOW = "slideshow";
export const PROGRAM_ITEM_TYPE_VIDEO = "video";

export class ProgramItem {

    protected _type:string;
    protected _data:any;

    set type(t:string) {
        this._type = t;
    }

    get type():string {
        return this._type;
    }

    set data(d:any) {
        this._data = d;
    }

    get data():any {
        return this._data;
    }

}