jellyfin/MediaBrowser.Model/Configuration/ChapterOptions.cs

19 lines
510 B
C#
Raw Normal View History

2014-06-29 10:35:05 -07: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-07 22:04:38 -07:00
2014-06-29 10:35:05 -07:00
public ChapterOptions()
{
DownloadMovieChapters = true;
DisabledFetchers = new string[] { };
FetcherOrder = new string[] { };
}
}
}