Sonarr/NzbDrone.Api/Series/SeriesResource.cs

49 lines
1.7 KiB
C#
Raw Normal View History

2013-02-09 10:04:18 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Api.QualityProfiles;
2013-02-09 10:04:18 +00:00
using NzbDrone.Core.Model;
namespace NzbDrone.Api.Series
{
2013-02-13 06:32:17 +00:00
public class SeriesResource
2013-02-09 10:04:18 +00:00
{
public Int32 Id { get; set; }
//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 10:04:18 +00: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; }
public DateTime NextAiring { get; set; }
public String Details { get; set; }
public String Network { get; set; }
public String AirTime { get; set; }
public String Language { get; set; }
public Int32 SeasonCount { get; set; }
public Int32 UtcOffset { get; set; }
//View & Edit
public String Path { get; set; }
public Int32 QualityProfileId { get; set; }
//Editing Only
public Boolean SeasonFolder { get; set; }
public Boolean Monitored { get; set; }
2013-02-12 05:13:41 +00:00
public Int32 BacklogSetting { get; set; }
public String CustomStartDate { get; set; }
2013-02-09 10:04:18 +00:00
}
}