jellyfin/MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs

23 lines
845 B
C#
Raw Normal View History

2014-09-22 14:56:54 -07:00

namespace MediaBrowser.Model.Configuration
{
public class CinemaModeConfiguration
{
public bool EnableIntrosForMovies { get; set; }
public bool EnableIntrosForEpisodes { get; set; }
public bool EnableIntrosForWatchedContent { get; set; }
public bool EnableIntrosFromUpcomingTrailers { get; set; }
public bool EnableIntrosFromMoviesInLibrary { get; set; }
public bool EnableIntrosParentalControl { get; set; }
2014-10-08 16:31:44 -07:00
public bool EnableIntrosFromSimilarMovies { get; set; }
2014-09-22 17:04:50 -07:00
public string CustomIntroPath { get; set; }
2014-09-29 21:47:30 -07:00
public bool EnableIntrosFromUpcomingDvdMovies { get; set; }
public bool EnableIntrosFromUpcomingStreamingMovies { get; set; }
2014-09-22 14:56:54 -07:00
public CinemaModeConfiguration()
{
EnableIntrosParentalControl = true;
}
}
}