2014-06-29 17:35:05 +00:00
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class ChapterOptions
|
|
|
|
|
{
|
|
|
|
|
public bool DownloadMovieChapters { get; set; }
|
|
|
|
|
public bool DownloadEpisodeChapters { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] FetcherOrder { get; set; }
|
|
|
|
|
public string[] DisabledFetchers { get; set; }
|
2015-11-08 05:04:38 +00:00
|
|
|
|
|
2014-06-29 17:35:05 +00:00
|
|
|
|
public ChapterOptions()
|
|
|
|
|
{
|
|
|
|
|
DownloadMovieChapters = true;
|
|
|
|
|
|
|
|
|
|
DisabledFetchers = new string[] { };
|
|
|
|
|
FetcherOrder = new string[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|