program-item.ts
410 Bytes
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;
}
}