jellyfin/MediaBrowser.Model/Configuration/ChapterOptions.cs
2016-10-02 00:31:47 -04:00

19 lines
No EOL
510 B
C#

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; }
public ChapterOptions()
{
DownloadMovieChapters = true;
DisabledFetchers = new string[] { };
FetcherOrder = new string[] { };
}
}
}