import { ContentTypeModel } from './content-type.model'; import { WorkModel } from './work.model'; import { FSKModel } from './fsk.model'; import { FSKIndexModel } from './fsk-index.model'; /** * Created by vsliwka on 03/08/2017. */ export declare class EditorialContentModel { id: number; episodeId: number; contentType: ContentTypeModel; work: WorkModel; number: string; diffusionNum: string; film24Duration: string; film25Duration: string; duration: string; state: boolean; descriptionTitle: string; timeLineVersionName: string; fsks: FSKModel[]; fsksIndex: FSKIndexModel[]; constructor(); fromJSON(json: any): this; } //# sourceMappingURL=editorial-content.model.d.ts.map