aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ChapterOptions.cs
blob: fd39307040e8ca5a104e848948b780dd4cac55fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace MediaBrowser.Model.Configuration
{
    public class ChapterOptions
    {
        public bool EnableMovieChapterImageExtraction { get; set; }
        public bool EnableEpisodeChapterImageExtraction { get; set; }
        public bool EnableOtherVideoChapterImageExtraction { get; set; }

        public bool DownloadMovieChapters { get; set; }
        public bool DownloadEpisodeChapters { get; set; }

        public string[] FetcherOrder { get; set; }
        public string[] DisabledFetchers { get; set; }

        public bool ExtractDuringLibraryScan { get; set; }
        
        public ChapterOptions()
        {
            DownloadMovieChapters = true;
            ExtractDuringLibraryScan = true;

            DisabledFetchers = new string[] { };
            FetcherOrder = new string[] { };
        }
    }
}