mirror of https://github.com/Ombi-app/Ombi
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.
70 lines
2.2 KiB
70 lines
2.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ombi.Api.Models.Sonarr
|
|
{
|
|
public class SonarrAllSeries
|
|
{
|
|
public List<Series> list { get; set; }
|
|
}
|
|
|
|
public class Series
|
|
{
|
|
public string title { get; set; }
|
|
public List<Alternatetitle> alternateTitles { get; set; }
|
|
public string sortTitle { get; set; }
|
|
public int seasonCount { get; set; }
|
|
public int totalEpisodeCount { get; set; }
|
|
public int episodeCount { get; set; }
|
|
public int episodeFileCount { get; set; }
|
|
public long sizeOnDisk { get; set; }
|
|
public string status { get; set; }
|
|
public string overview { get; set; }
|
|
public DateTime previousAiring { get; set; }
|
|
public string network { get; set; }
|
|
public List<Image> images { get; set; }
|
|
public List<Season> seasons { get; set; }
|
|
public int year { get; set; }
|
|
public string path { get; set; }
|
|
public int profileId { get; set; }
|
|
public bool seasonFolder { get; set; }
|
|
public bool monitored { get; set; }
|
|
public bool useSceneNumbering { get; set; }
|
|
public int runtime { get; set; }
|
|
public int tvdbId { get; set; }
|
|
public int tvRageId { get; set; }
|
|
public int tvMazeId { get; set; }
|
|
public DateTime firstAired { get; set; }
|
|
public DateTime lastInfoSync { get; set; }
|
|
public string seriesType { get; set; }
|
|
public string cleanTitle { get; set; }
|
|
public string imdbId { get; set; }
|
|
public string titleSlug { get; set; }
|
|
public string certification { get; set; }
|
|
public List<string> genres { get; set; }
|
|
public List<object> tags { get; set; }
|
|
public DateTime added { get; set; }
|
|
public Ratings ratings { get; set; }
|
|
public int qualityProfileId { get; set; }
|
|
public int id { get; set; }
|
|
}
|
|
|
|
public class Ratings
|
|
{
|
|
public int votes { get; set; }
|
|
public float value { get; set; }
|
|
}
|
|
|
|
public class Alternatetitle
|
|
{
|
|
public string title { get; set; }
|
|
public int seasonNumber { get; set; }
|
|
}
|
|
|
|
public class Image
|
|
{
|
|
public string coverType { get; set; }
|
|
public string url { get; set; }
|
|
}
|
|
}
|