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 a value indicating whether this instance is administrator.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value><c>true</c> if this instance is administrator; otherwise, <c>false</c>.</value>
|
|
|
|
|
|
public bool IsAdministrator { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <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-04-28 23:56:20 -04:00
|
|
|
|
public bool GroupMoviesIntoBoxSets { get; set; }
|
|
|
|
|
|
|
2014-06-30 15:24:35 -04:00
|
|
|
|
public string[] DisplayChannelsWithinViews { get; set; }
|
2014-10-14 20:05:09 -04:00
|
|
|
|
|
2014-06-04 22:32:40 -04:00
|
|
|
|
public string[] ExcludeFoldersFromGrouping { get; set; }
|
|
|
|
|
|
|
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-08-14 09:24:30 -04:00
|
|
|
|
public bool DisplayFoldersView { 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-09-30 00:47:30 -04:00
|
|
|
|
public bool IncludeTrailersInSuggestions { get; set; }
|
2014-09-22 17:56:54 -04:00
|
|
|
|
|
2014-10-01 20:28:16 -04:00
|
|
|
|
public bool EnableCinemaMode { get; set; }
|
|
|
|
|
|
|
2014-10-31 00:57:24 -04:00
|
|
|
|
public string[] LatestItemsExcludes { get; set; }
|
2014-12-20 01:06:27 -05:00
|
|
|
|
|
2014-12-22 02:00:40 -05:00
|
|
|
|
public bool HasMigratedToPolicy { get; set; }
|
2015-03-31 12:24:16 -04:00
|
|
|
|
public bool HidePlayedInLatest { get; set; }
|
2014-12-20 01:06:27 -05:00
|
|
|
|
|
2013-02-20 20:33:05 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public UserConfiguration()
|
|
|
|
|
|
{
|
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-30 15:24:35 -04:00
|
|
|
|
DisplayChannelsWithinViews = new string[] { };
|
2014-06-04 22:32:40 -04:00
|
|
|
|
|
|
|
|
|
|
ExcludeFoldersFromGrouping = new string[] { };
|
2014-07-13 17:03:57 -04:00
|
|
|
|
DisplayCollectionsView = true;
|
2014-09-14 11:10:51 -04:00
|
|
|
|
|
2014-09-30 00:47:30 -04:00
|
|
|
|
IncludeTrailersInSuggestions = true;
|
2014-10-01 20:28:16 -04:00
|
|
|
|
EnableCinemaMode = true;
|
2013-02-20 20:33:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|