Files
jellyfin-jellyfin-1/MediaBrowser.Model/Configuration/UserConfiguration.cs

71 lines
2.3 KiB
C#
Raw Normal View History

2013-04-18 15:57:28 -04:00

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