Move media directory under cast

This commit is contained in:
hensm
2019-03-19 11:24:39 +00:00
parent 10bcf7a0d9
commit e3c9df8568
30 changed files with 19 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
"use strict";
export default class Track {
public customData: any = null;
public language: string = null;
public name: string = null;
public subtype: string = null;
public trackContentId: string = null;
public trackContentType: string = null;
constructor (
public trackId: number
, public type: string) {}
}