mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
12 lines
311 B
C#
12 lines
311 B
C#
namespace MediaBrowser.Providers.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; }
|
|
}
|
|
}
|