add channels infrastructure

This commit is contained in:
Luke Pulverenti
2014-05-03 00:20:04 -04:00
parent 3228f50895
commit 6936336b82
19 changed files with 437 additions and 60 deletions

View File

@@ -57,6 +57,7 @@ namespace MediaBrowser.Model.Configuration
public bool GroupMoviesIntoBoxSets { get; set; }
public string[] BlockedMediaFolders { get; set; }
public string[] BlockedChannels { get; set; }
public UnratedItem[] BlockUnratedItems { get; set; }
@@ -74,6 +75,7 @@ namespace MediaBrowser.Model.Configuration
GroupMoviesIntoBoxSets = true;
BlockedMediaFolders = new string[] { };
BlockedChannels = new string[] { };
BlockUnratedItems = new UnratedItem[] { };
}
}
@@ -88,6 +90,7 @@ namespace MediaBrowser.Model.Configuration
Book,
LiveTvChannel,
LiveTvProgram,
ChannelContent,
Other
}
}