jellyfin/MediaBrowser.Model/Configuration/UserConfiguration.cs

124 lines
4.3 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 the max parental rating.
/// </summary>
/// <value>The max parental rating.</value>
public int? MaxParentalRating { get; set; }
2013-02-21 02:33:05 +01:00
/// <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-07-08 18:13:21 +02:00
/// <summary>
/// Gets or sets a value indicating whether this instance is hidden.
/// </summary>
/// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
public bool IsHidden { get; set; }
2014-12-20 07:06:27 +01:00
/// <summary>
/// Gets or sets a value indicating whether this instance is disabled.
/// </summary>
/// <value><c>true</c> if this instance is disabled; otherwise, <c>false</c>.</value>
2013-07-08 18:13:21 +02:00
public bool IsDisabled { get; set; }
2013-10-27 00:01:21 +02:00
public bool DisplayMissingEpisodes { get; set; }
public bool DisplayUnairedEpisodes { get; set; }
public bool EnableRemoteControlOfOtherUsers { get; set; }
2014-11-19 03:45:12 +01:00
public bool EnableSharedDeviceControl { get; set; }
2013-10-27 00:01:21 +02:00
public bool EnableLiveTvManagement { get; set; }
public bool EnableLiveTvAccess { get; set; }
public bool EnableMediaPlayback { get; set; }
2014-03-25 22:13:55 +01:00
public bool EnableContentDeletion { get; set; }
2014-02-21 06:04:11 +01:00
2014-04-29 05:56:20 +02:00
public bool GroupMoviesIntoBoxSets { get; set; }
2014-02-21 06:04:11 +01:00
public string[] BlockedMediaFolders { get; set; }
2014-05-03 06:20:04 +02:00
public string[] BlockedChannels { get; set; }
2014-02-21 06:04:11 +01:00
public string[] DisplayChannelsWithinViews { get; set; }
2014-06-05 04:32:40 +02:00
public string[] ExcludeFoldersFromGrouping { get; set; }
public UnratedItem[] BlockUnratedItems { 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; }
public AccessSchedule[] AccessSchedules { get; set; }
2014-10-24 06:54:35 +02:00
public bool EnableUserPreferenceAccess { get; set; }
2014-10-31 05:57:24 +01:00
public string[] LatestItemsExcludes { get; set; }
2014-11-29 03:40:46 +01:00
public string[] BlockedTags { 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;
EnableLiveTvManagement = true;
EnableMediaPlayback = true;
EnableLiveTvAccess = true;
2014-11-19 03:45:12 +01:00
EnableSharedDeviceControl = 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[] { };
2014-02-21 06:04:11 +01:00
BlockedMediaFolders = new string[] { };
DisplayChannelsWithinViews = new string[] { };
2014-11-29 03:40:46 +01:00
BlockedTags = new string[] { };
2014-05-03 06:20:04 +02:00
BlockedChannels = new string[] { };
BlockUnratedItems = new UnratedItem[] { };
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;
2014-10-24 06:54:35 +02:00
EnableUserPreferenceAccess = true;
AccessSchedules = new AccessSchedule[] { };
2013-02-21 02:33:05 +01:00
}
}
}