mirror of
https://github.com/fergalmoran/opengifame.git
synced 2026-01-03 07:26:03 +00:00
10 lines
152 B
TypeScript
10 lines
152 B
TypeScript
import Season from './season';
|
|
|
|
export default interface Episode {
|
|
id: string;
|
|
number: number;
|
|
name: string;
|
|
airDate: Date;
|
|
season: Season;
|
|
}
|