jellyfin-server/MediaBrowser.Model/Configuration/UserConfiguration.cs

65 lines
2.0 KiB
C#
Raw Normal View History

2013-04-18 19:57:28 +00:00

2013-02-21 01:33:05 +00:00
namespace MediaBrowser.Model.Configuration
{
/// <summary>
/// Class UserConfiguration
/// </summary>
public class UserConfiguration
{
/// <summary>
/// Gets or sets the audio language preference.
/// </summary>
/// <value>The audio language preference.</value>
public string AudioLanguagePreference { get; set; }
2014-05-12 18:04:25 +00:00
/// <summary>
/// Gets or sets a value indicating whether [play default audio track].
/// </summary>
/// <value><c>true</c> if [play default audio track]; otherwise, <c>false</c>.</value>
public bool PlayDefaultAudioTrack { get; set; }
2013-02-21 01:33:05 +00:00
/// <summary>
/// Gets or sets the subtitle language preference.
/// </summary>
/// <value>The subtitle language preference.</value>
public string SubtitleLanguagePreference { get; set; }
2013-10-26 22:01:21 +00:00
public bool DisplayMissingEpisodes { get; set; }
2015-05-08 19:10:53 +00:00
public string[] GroupedFolders { get; set; }
2014-06-05 02:32:40 +00:00
2014-05-12 18:04:25 +00:00
public SubtitlePlaybackMode SubtitleMode { get; set; }
2014-07-01 04:06:28 +00:00
public bool DisplayCollectionsView { get; set; }
2014-05-12 18:04:25 +00:00
2014-08-15 16:35:41 +00:00
public bool EnableLocalPassword { get; set; }
2014-08-19 01:42:53 +00:00
public string[] OrderedViews { get; set; }
2014-09-14 15:10:51 +00:00
2014-10-31 04:57:24 +00:00
public string[] LatestItemsExcludes { get; set; }
2014-12-20 06:06:27 +00:00
2015-03-31 16:24:16 +00:00
public bool HidePlayedInLatest { get; set; }
2014-12-20 06:06:27 +00:00
public bool RememberAudioSelections { get; set; }
public bool RememberSubtitleSelections { get; set; }
2016-02-25 13:41:06 +00:00
public bool EnableNextEpisodeAutoPlay { get; set; }
2016-06-03 16:24:04 +00:00
2013-02-21 01:33:05 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
/// </summary>
public UserConfiguration()
{
2016-02-25 13:41:06 +00:00
EnableNextEpisodeAutoPlay = true;
RememberAudioSelections = true;
RememberSubtitleSelections = true;
2016-03-24 18:11:03 +00:00
2015-04-03 15:50:50 +00:00
HidePlayedInLatest = true;
2014-05-12 18:04:25 +00:00
PlayDefaultAudioTrack = true;
2014-02-21 05:04:11 +00:00
2014-10-31 04:57:24 +00:00
LatestItemsExcludes = new string[] { };
2014-08-19 01:42:53 +00:00
OrderedViews = new string[] { };
2014-06-05 02:32:40 +00:00
2015-05-08 19:10:53 +00:00
GroupedFolders = new string[] { };
2013-02-21 01:33:05 +00:00
}
}
}