jellyfin/MediaBrowser.Model/Configuration/UserConfiguration.cs

65 lines
2 KiB
C#
Raw Normal View History

2013-04-18 21:57:28 +02:00

2013-02-21 02:33:05 +01: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 20:04:25 +02: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 02:33:05 +01:00
/// <summary>
/// Gets or sets the subtitle language preference.
/// </summary>
/// <value>The subtitle language preference.</value>
public string SubtitleLanguagePreference { get; set; }
2013-10-27 00:01:21 +02:00
public bool DisplayMissingEpisodes { get; set; }
2015-05-08 21:10:53 +02:00
public string[] GroupedFolders { get; set; }
2014-06-05 04:32:40 +02:00
2014-05-12 20:04:25 +02:00
public SubtitlePlaybackMode SubtitleMode { get; set; }
2014-07-01 06:06:28 +02:00
public bool DisplayCollectionsView { get; set; }
2014-05-12 20:04:25 +02:00
2014-08-15 18:35:41 +02:00
public bool EnableLocalPassword { get; set; }
2014-08-19 03:42:53 +02:00
public string[] OrderedViews { get; set; }
2014-09-14 17:10:51 +02:00
2014-10-31 05:57:24 +01:00
public string[] LatestItemsExcludes { get; set; }
2014-12-20 07:06:27 +01:00
2015-03-31 18:24:16 +02:00
public bool HidePlayedInLatest { get; set; }
2014-12-20 07:06:27 +01:00
public bool RememberAudioSelections { get; set; }
public bool RememberSubtitleSelections { get; set; }
2016-02-25 14:41:06 +01:00
public bool EnableNextEpisodeAutoPlay { get; set; }
2016-06-03 18:24:04 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
/// </summary>
public UserConfiguration()
{
2016-02-25 14:41:06 +01:00
EnableNextEpisodeAutoPlay = true;
RememberAudioSelections = true;
RememberSubtitleSelections = true;
2016-03-24 19:11:03 +01:00
2015-04-03 17:50:50 +02:00
HidePlayedInLatest = true;
2014-05-12 20:04:25 +02:00
PlayDefaultAudioTrack = true;
2014-02-21 06:04:11 +01:00
2014-10-31 05:57:24 +01:00
LatestItemsExcludes = new string[] { };
2014-08-19 03:42:53 +02:00
OrderedViews = new string[] { };
2014-06-05 04:32:40 +02:00
2015-05-08 21:10:53 +02:00
GroupedFolders = new string[] { };
2013-02-21 02:33:05 +01:00
}
}
}