You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Providers/Plugins/Tmdb/Models/TV/Episode.cs

22 lines
459 B

namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
{
public class Episode
{
5 years ago
public string Air_Date { get; set; }
5 years ago
public int Episode_Number { get; set; }
5 years ago
public int Id { get; set; }
5 years ago
public string Name { get; set; }
5 years ago
public string Overview { get; set; }
5 years ago
public string Still_Path { get; set; }
5 years ago
public double Vote_Average { get; set; }
5 years ago
public int Vote_Count { get; set; }
}
}