mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 23:08:42 +01:00
add cinema mode feature
This commit is contained in:
23
MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
Normal file
23
MediaBrowser.Model/Configuration/CinemaModeConfiguration.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
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 EnableCustomIntro { get; set; }
|
||||
public bool EnableIntrosParentalControl { get; set; }
|
||||
|
||||
public CinemaModeConfiguration()
|
||||
{
|
||||
EnableIntrosForMovies = true;
|
||||
EnableCustomIntro = true;
|
||||
EnableIntrosFromMoviesInLibrary = true;
|
||||
EnableIntrosFromUpcomingTrailers = true;
|
||||
EnableIntrosParentalControl = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user