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; }
|
|
}
|
|
}
|