blob: 1c2b0c52763680fb03ea44c9ace6eeeefa7c4631 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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; }
}
}
|