jellyfin/MediaBrowser.Model/Configuration/ChapterOptions.cs
2016-10-05 03:15:29 -04:00

11 lines
364 B
C#

namespace MediaBrowser.Model.Configuration
{
public class ChapterOptions
{
public bool EnableMovieChapterImageExtraction { get; set; }
public bool EnableEpisodeChapterImageExtraction { get; set; }
public bool EnableOtherVideoChapterImageExtraction { get; set; }
public bool ExtractDuringLibraryScan { get; set; }
}
}