2011-05-09 23:32:33 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Web;
|
2012-01-23 22:29:32 -08:00
|
|
|
using NzbDrone.Core.Model;
|
2011-05-09 23:32:33 -07:00
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
{
|
2012-02-15 21:53:00 -08:00
|
|
|
public class SeriesModel
|
2011-05-09 23:32:33 -07:00
|
|
|
{
|
|
|
|
public int SeriesId { get; set; }
|
|
|
|
|
|
|
|
//View Only
|
|
|
|
public string Title { get; set; }
|
2012-02-15 21:53:00 -08:00
|
|
|
public string TitleSorter { get; set; }
|
2011-05-09 23:32:33 -07:00
|
|
|
public int SeasonsCount { get; set; }
|
2011-06-20 00:13:17 -07:00
|
|
|
public int EpisodeCount { get; set; }
|
|
|
|
public int EpisodeFileCount { get; set; }
|
2011-05-09 23:32:33 -07:00
|
|
|
public string Status { get; set; }
|
|
|
|
public string AirsDayOfWeek { get; set; }
|
|
|
|
public string QualityProfileName { get; set; }
|
|
|
|
public string Overview { get; set; }
|
2011-06-01 20:36:30 -07:00
|
|
|
public int Episodes { get; set; }
|
2011-09-10 16:01:15 -07:00
|
|
|
public bool HasBanner { get; set; }
|
2011-09-28 10:56:30 -07:00
|
|
|
public string NextAiring { get; set; }
|
2012-02-15 21:53:00 -08:00
|
|
|
public string NextAiringSorter { get; set; }
|
|
|
|
public string Details { get; set; }
|
2012-02-28 23:20:40 -08:00
|
|
|
public string Network { get; set; }
|
2011-06-03 18:56:53 -07:00
|
|
|
|
|
|
|
public IList<int> Seasons { get; set; }
|
2011-05-09 23:32:33 -07:00
|
|
|
|
|
|
|
//View & Edit
|
|
|
|
[DisplayName("Path")]
|
2011-08-03 23:59:08 -07:00
|
|
|
[Description("Where should NzbDrone store episodes for this series?")]
|
2011-05-09 23:32:33 -07:00
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
[DisplayName("Quality Profile")]
|
2011-08-03 23:59:08 -07:00
|
|
|
[Description("Which Quality Profile should NzbDrone use to download episodes?")]
|
2011-05-09 23:32:33 -07:00
|
|
|
public virtual int QualityProfileId { get; set; }
|
|
|
|
|
|
|
|
//Editing Only
|
|
|
|
[DisplayName("Use Season Folder")]
|
2011-08-03 23:59:08 -07:00
|
|
|
[Description("Should downloaded episodes be stored in season folders?")]
|
2011-05-09 23:32:33 -07:00
|
|
|
public bool SeasonFolder { get; set; }
|
|
|
|
|
|
|
|
[DisplayName("Monitored")]
|
2011-08-03 23:59:08 -07:00
|
|
|
[Description("Should NzbDrone download episodes for this series?")]
|
2011-05-15 23:27:02 -07:00
|
|
|
public bool Monitored { get; set; }
|
2012-01-23 22:29:32 -08:00
|
|
|
|
2012-01-25 17:02:21 -08:00
|
|
|
[DisplayName("Backlog Setting")]
|
2012-01-25 18:00:17 -08:00
|
|
|
[Description("Should NzbDrone search for missing episodes every 30 days?")]
|
2012-01-25 17:02:21 -08:00
|
|
|
public int BacklogSetting { get; set; }
|
2011-05-09 23:32:33 -07:00
|
|
|
}
|
|
|
|
}
|