From 38ac187fc44aa1531e492fb65436e2a7e5e5cbb1 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Tue, 10 Dec 2024 01:18:40 +0100 Subject: feat: Added season images --- POJO.cs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'POJO.cs') diff --git a/POJO.cs b/POJO.cs index dcc91a0..e54b462 100644 --- a/POJO.cs +++ b/POJO.cs @@ -70,12 +70,18 @@ public class POJO public string id { get; set; } } + public class SeasonId + { + public string id { get; set; } + } + public class File { public string fileType { get; set; } public string title { get; set; } public string id { get; set; } public EpisodeId? episode_id { get; set; } + public SeasonId? season_id { get; set; } public ImageType? JellyFinFileType() { -- cgit