From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- .../Configuration/UserConfiguration.cs | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 MediaBrowser.Model/Configuration/UserConfiguration.cs (limited to 'MediaBrowser.Model/Configuration/UserConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs new file mode 100644 index 000000000..34b0be095 --- /dev/null +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -0,0 +1,66 @@ +using System; + +namespace MediaBrowser.Model.Configuration +{ + /// + /// Class UserConfiguration + /// + public class UserConfiguration + { + /// + /// Gets or sets the audio language preference. + /// + /// The audio language preference. + public string AudioLanguagePreference { get; set; } + + /// + /// Gets or sets a value indicating whether [play default audio track]. + /// + /// true if [play default audio track]; otherwise, false. + public bool PlayDefaultAudioTrack { get; set; } + + /// + /// Gets or sets the subtitle language preference. + /// + /// The subtitle language preference. + public string SubtitleLanguagePreference { get; set; } + + public bool DisplayMissingEpisodes { get; set; } + + public string[] GroupedFolders { get; set; } + + public SubtitlePlaybackMode SubtitleMode { get; set; } + public bool DisplayCollectionsView { get; set; } + + public bool EnableLocalPassword { get; set; } + + public string[] OrderedViews { get; set; } + + public string[] LatestItemsExcludes { get; set; } + public string[] MyMediaExcludes { get; set; } + + public bool HidePlayedInLatest { get; set; } + + public bool RememberAudioSelections { get; set; } + public bool RememberSubtitleSelections { get; set; } + public bool EnableNextEpisodeAutoPlay { get; set; } + + /// + /// Initializes a new instance of the class. + /// + public UserConfiguration() + { + EnableNextEpisodeAutoPlay = true; + RememberAudioSelections = true; + RememberSubtitleSelections = true; + + HidePlayedInLatest = true; + PlayDefaultAudioTrack = true; + + LatestItemsExcludes = new string[] {}; + OrderedViews = new string[] {}; + MyMediaExcludes = new string[] {}; + GroupedFolders = new string[] {}; + } + } +} -- cgit v1.2.3