19 lines
644 B
C#
19 lines
644 B
C#
|
|
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; }
|
|
public string? PosterPath { get; set; }
|
|
public string? BackdropPath { get; set; }
|
|
public string? LatestSeasonPosterPath { get; set; }
|
|
public string? LatestSeasonOverview { get; set; }
|
|
public double VoteAverage { get; set; }
|
|
public string? Overview { get; set; }
|
|
public int? LatestOrdinalEpisodeNumber { get; set; }
|
|
}
|
|
} |