jellyfin/MediaBrowser.Model/Configuration/UserConfiguration.cs

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