Files
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

18 lines
385 B
TypeScript
Executable File

import {PersonCredit, Title} from './title';
import {Video} from '@app/titles/models/video';
export const SEASON_MODEL = 'season';
export interface Season {
id: number;
model_type: typeof SEASON_MODEL;
poster: string;
number: number;
title?: Title;
title_id: number;
release_date: string;
credits: PersonCredit[];
episodes_count: number;
primary_video?: Video;
}