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.
Ombi/src/Ombi.Api.TvMaze/Models/TvMazeEpisode.cs

19 lines
588 B

namespace Ombi.Api.TvMaze.Models
{
public class TvMazeEpisodes
{
public int id { get; set; }
public string url { get; set; }
public string name { get; set; }
public int season { get; set; }
public int number { get; set; }
public string airdate { get; set; }
//public string airtime { get; set; }
public string airstamp { get; set; }
//public int runtime { get; set; }
public Image image { get; set; }
public string summary { get; set; }
//public Links _links { get; set; }
}
}