1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-15 01:25:05 +02:00
Files
Sonarr/NzbDrone.Api/Series/SeriesResource.cs

45 lines
1.7 KiB
C#
Raw Normal View History

2013-02-09 02:04:18 -08:00
using System;
using System.Collections.Generic;
2013-04-19 17:05:48 -07:00
using NzbDrone.Api.REST;
2013-02-09 02:04:18 -08:00
namespace NzbDrone.Api.Series
{
2013-04-19 17:05:48 -07:00
public class SeriesResource : RestResource<SeriesResource>
2013-02-09 02:04:18 -08:00
{
//Todo: Sorters should be done completely on the client
//Todo: Is there an easy way to keep IgnoreArticlesWhenSorting in sync between, Series, History, Missing?
//Todo: We should get the entire QualityProfile instead of ID and Name separately
2013-02-09 02:04:18 -08:00
//View Only
public String Title { get; set; }
public Int32 SeasonsCount { get; set; }
public Int32 EpisodeCount { get; set; }
public Int32 EpisodeFileCount { get; set; }
public String Status { get; set; }
public String AirsDayOfWeek { get; set; }
public String QualityProfileName { get; set; }
public String Overview { get; set; }
public Int32 Episodes { get; set; }
public Boolean HasBanner { get; set; }
2013-04-20 13:09:12 -07:00
public DateTime? NextAiring { get; set; }
2013-02-09 02:04:18 -08:00
public String Details { get; set; }
public String Network { get; set; }
public String AirTime { get; set; }
public String Language { get; set; }
2013-04-20 13:09:12 -07:00
public Int32 NumberOfSeasons { get; set; }
2013-02-09 02:04:18 -08:00
public Int32 UtcOffset { get; set; }
public List<Core.MediaCover.MediaCover> Images { get; set; }
2013-02-09 02:04:18 -08:00
//View & Edit
public int RootFolderId { get; set; }
public string FolderName { get; set; }
2013-02-09 02:04:18 -08:00
public Int32 QualityProfileId { get; set; }
//Editing Only
public Boolean SeasonFolder { get; set; }
public Boolean Monitored { get; set; }
2013-02-11 23:13:41 -06:00
public Int32 BacklogSetting { get; set; }
public String CustomStartDate { get; set; }
2013-02-09 02:04:18 -08:00
}
}