Toggle episode monitored status from the table

This commit is contained in:
Mark McDowall 2013-07-09 08:41:42 -07:00
commit 3aa0507912
6 changed files with 52 additions and 14 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Api.REST;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.Seasons
{
public class SeasonResource : RestResource
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public Boolean Monitored { get; set; }
}
}