jellyfin/MediaBrowser.Model/Configuration/ChapterOptions.cs

11 lines
364 B
C#
Raw Normal View History

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