feat: allow itemdata to hold season and episode numbers

This commit is contained in:
Adrian Castro
2024-04-08 18:36:44 +02:00
parent 8b7bf5da6d
commit ae5505da7f
3 changed files with 16 additions and 4 deletions

View File

@@ -14,6 +14,8 @@ export interface ItemData {
id: string;
title: string;
type: "movie" | "tv";
season?: number;
episode?: number;
year: number;
release_date?: Date;
posterUrl: string;