jellyfin/MediaBrowser.Model/Configuration/UserConfiguration.cs

74 lines
2.4 KiB
C#
Raw Normal View History

2013-04-18 12:57:28 -07:00

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