mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
19 lines
510 B
C#
19 lines
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[] { };
|
|
}
|
|
}
|
|
} |