Kyoo/src/models/show.ts
2020-04-26 21:05:39 +02:00

26 lines
465 B
TypeScript

import { Season } from "./season";
import { Genre } from "./genre";
import { People } from "./people";
import { Studio } from "./studio";
export interface Show
{
slug: string;
title: string;
aliases: string[];
overview: string;
genres: Genre[];
status: string;
studio: Studio;
people: People[];
seasons: Season[];
trailerUrl: string;
isCollection: boolean;
isMovie: boolean;
startYear: number;
endYear : number;
externalIDs: [string, string][];
}