mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
12 lines
319 B
C#
12 lines
319 B
C#
namespace MediaBrowser.Providers.Plugins.Tmdb.Models.TV
|
|
{
|
|
public class Season
|
|
{
|
|
public string Air_Date { get; set; }
|
|
public int Episode_Count { get; set; }
|
|
public int Id { get; set; }
|
|
public string Poster_Path { get; set; }
|
|
public int Season_Number { get; set; }
|
|
}
|
|
}
|