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; }
|
|
|
|
|
public bool DisplayUnairedEpisodes { get; set; }
|
|
|
|
|
|
2014-04-29 03:56:20 +00:00
|
|
|
|
public bool GroupMoviesIntoBoxSets { get; set; }
|
|
|
|
|
|
2014-06-30 19:24:35 +00:00
|
|
|
|
public string[] DisplayChannelsWithinViews { get; set; }
|
2014-10-15 00:05:09 +00:00
|
|
|
|
|
2014-06-05 02:32:40 +00:00
|
|
|
|
public string[] ExcludeFoldersFromGrouping { get; set; }
|
|
|
|
|
|
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-08-14 13:24:30 +00:00
|
|
|
|
public bool DisplayFoldersView { 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-09-30 04:47:30 +00:00
|
|
|
|
public bool IncludeTrailersInSuggestions { get; set; }
|
2014-09-22 21:56:54 +00:00
|
|
|
|
|
2014-10-02 00:28:16 +00:00
|
|
|
|
public bool EnableCinemaMode { get; set; }
|
|
|
|
|
|
2014-10-31 04:57:24 +00:00
|
|
|
|
public string[] LatestItemsExcludes { get; set; }
|
2015-04-15 21:59:20 +00:00
|
|
|
|
public string[] PlainFolderViews { 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
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public UserConfiguration()
|
|
|
|
|
{
|
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-30 19:24:35 +00:00
|
|
|
|
DisplayChannelsWithinViews = new string[] { };
|
2014-06-05 02:32:40 +00:00
|
|
|
|
|
|
|
|
|
ExcludeFoldersFromGrouping = new string[] { };
|
2015-04-15 21:59:20 +00:00
|
|
|
|
PlainFolderViews = new string[] { };
|
2014-07-13 21:03:57 +00:00
|
|
|
|
DisplayCollectionsView = true;
|
2014-09-14 15:10:51 +00:00
|
|
|
|
|
2014-09-30 04:47:30 +00:00
|
|
|
|
IncludeTrailersInSuggestions = true;
|
2014-10-02 00:28:16 +00:00
|
|
|
|
EnableCinemaMode = true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|