jellyfin/MediaBrowser.Model/Configuration/ChapterOptions.cs

11 lines
364 B
C#
Raw Normal View History

2014-06-29 19:35:05 +02:00
namespace MediaBrowser.Model.Configuration
{
public class ChapterOptions
{
2016-10-05 09:15:29 +02:00
public bool EnableMovieChapterImageExtraction { get; set; }
public bool EnableEpisodeChapterImageExtraction { get; set; }
public bool EnableOtherVideoChapterImageExtraction { get; set; }
2014-06-29 19:35:05 +02:00
2016-10-05 09:15:29 +02:00
public bool ExtractDuringLibraryScan { get; set; }
2014-06-29 19:35:05 +02:00
}
}