jellyfin/MediaBrowser.Model/Configuration/ChapterOptions.cs

11 lines
364 B
C#
Raw Normal View History

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