Added more tmdb fields to cache system

This commit is contained in:
2024-09-26 20:26:32 -04:00
parent 35af1eb29b
commit a10f8c9c2f
2 changed files with 10 additions and 0 deletions

View File

@@ -8,5 +8,10 @@ namespace AnimeAnnouncer.Cache
public int LatestSeasonNumber { get; set; }
public int LastEpisodeNumber { get; set; }
public string? PosterPath { get; internal set; }
public string? BackdropPath { get; internal set; }
public string? LatestSeasonPosterPath { get; internal set; }
public string? LatestSeasonOverview { get; internal set; }
public double VoteAverage { get; internal set; }
}
}