Kyoo/src/models/collection.ts
2020-02-11 23:17:23 +01:00

13 lines
184 B
TypeScript

import { Show } from "./show";
export interface Collection
{
slug: string;
name: string;
poster: string;
overview: string;
startYear: number,
endYear: number,
shows: Show[];
}