support deleting and canceling live tv recordings and timers

This commit is contained in:
Luke Pulverenti
2013-11-29 11:58:24 -05:00
parent 4892fb4e95
commit 235b838fbe
26 changed files with 280 additions and 81 deletions

View File

@@ -1,5 +1,4 @@
using MediaBrowser.Model.Entities;

namespace MediaBrowser.Model.Querying
{
public class EpisodeQuery
@@ -8,7 +7,9 @@ namespace MediaBrowser.Model.Querying
public string SeriesId { get; set; }
public LocationType[] ExcludeLocationTypes { get; set; }
public bool? IsMissing { get; set; }
public bool? IsVirtualUnaired { get; set; }
public int? SeasonNumber { get; set; }
@@ -17,7 +18,6 @@ namespace MediaBrowser.Model.Querying
public EpisodeQuery()
{
Fields = new ItemFields[] { };
ExcludeLocationTypes = new LocationType[] { };
}
}
@@ -27,7 +27,9 @@ namespace MediaBrowser.Model.Querying
public string SeriesId { get; set; }
public LocationType[] ExcludeLocationTypes { get; set; }
public bool? IsMissing { get; set; }
public bool? IsVirtualUnaired { get; set; }
public ItemFields[] Fields { get; set; }
@@ -36,7 +38,6 @@ namespace MediaBrowser.Model.Querying
public SeasonQuery()
{
Fields = new ItemFields[] { };
ExcludeLocationTypes = new LocationType[] { };
}
}
}