aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ChapterOptions.cs
blob: 2e882ee6118498d403e41d319aec630f137f3b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ChapterOptions()
        {
            DownloadMovieChapters = true;

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