using System;
using System.Collections.Generic;
namespace TVDBSharp.Models
{
///
/// Entity describing an episode of a show.
///
public class Episode
{
///
/// Unique identifier for an episode.
///
public int Id { get; set; }
///
/// Director of the episode.
///
public string Director { get; set; }
///
/// This episode's title.
///
public string Title { get; set; }
///
/// This episode's absolute number
///
public int? AbsoluteEpisodeNumber { get; set; }
///
/// This episode's number in the appropriate season.
///
public int EpisodeNumber { get; set; }
///
/// This episode's season.
///
public int SeasonNumber { get; set; }
///
/// The date of the first time this episode has aired.
///
public DateTime? FirstAired { get; set; }
///
/// A list of guest stars.
///
public List GuestStars { get; set; }
///
/// Unique identifier on IMDb.
///
public string ImdbId { get; set; }
///
/// Main language spoken in the episode.
///
public string Language { get; set; }
///
/// A short description of the episode.
///
public string Description { get; set; }
///
/// Average rating as shown on IMDb.
///
public decimal? Rating { get; set; }
///
/// Amount of votes cast.
///
public int RatingCount { get; set; }
///
/// Writers(s) of the episode.
///
public List Writers { get; set; }
///
/// Let me know if you find out what this is.
///
public Uri EpisodeImage { get; set; }
///
/// Timestamp of the last update to this episode.
///
public long? LastUpdated { get; set; }
///
/// Unique identifier of the season.
///
public int SeasonId { get; set; }
///
/// Unique identifier of the show.
///
public int SeriesId { get; set; }
///
/// Height dimension of the thumbnail in pixels.
///
public int? ThumbHeight { get; set; }
///
/// Width dimension of the thumbnail in pixels;
///
public int? ThumbWidth { get; set; }
///
/// Let me know if you find out what this is.
///
public string TmsExport { get; set; }
}
}