Files
jellyfin-jellyfin-1/MediaBrowser.Model/Configuration/ChapterOptions.cs

11 lines
364 B
C#
Raw Normal View History

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