add adult content filter to catalog

This commit is contained in:
Luke Pulverenti
2014-06-07 17:06:01 -04:00
parent e210825e54
commit 4f0e6f61e7
5 changed files with 20 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
using System.Collections.Generic;
namespace MediaBrowser.Model.Channels
{
@@ -38,11 +39,13 @@ namespace MediaBrowser.Model.Channels
public SortOrder? SortOrder { get; set; }
public string[] SortBy { get; set; }
public ItemFilter[] Filters { get; set; }
public List<ItemFields> Fields { get; set; }
public ChannelItemQuery()
{
Filters = new ItemFilter[] { };
SortBy = new string[] { };
Fields = new List<ItemFields>();
}
}