From fc546b2741dd5a6d7b34124a65055b9a12099615 Mon Sep 17 00:00:00 2001 From: Maximilian Giller Date: Sat, 13 Sep 2025 03:44:15 +0200 Subject: [PATCH] Added multi-episode category --- src/structures.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/structures.py b/src/structures.py index 5ffa388..8cf63c5 100644 --- a/src/structures.py +++ b/src/structures.py @@ -49,6 +49,9 @@ class FileCategory(Enum): EPISODE = "episode" """Episode of a show.""" + MULTI_EPISODE = "multi-episode" + """A video containing multiple episodes of a show.""" + TRAILER = "trailer" """Trailer."""