Added configuration reading, redis caching basic, hopefully fixed future season issue

This commit is contained in:
2024-09-24 00:22:21 -04:00
parent e25200fb2f
commit 92d35cae2f
5 changed files with 90 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
namespace AnimeAnnouncer.Cache
{
public class TMDBCacheItem
{
public required String Title { get; set; }
public int ShowID { get; set; }
public int LatestSeasonNumber { get; set; }
public int LastEpisodeNumber { get; set; }
}
}