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 max parental rating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The max parental rating.</value>
|
2013-04-22 09:04:54 -07:00
|
|
|
|
public int? MaxParentalRating { get; set; }
|
2013-02-20 18:33:05 -07: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; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the subtitle language preference.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The subtitle language preference.</value>
|
|
|
|
|
public string SubtitleLanguagePreference { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether [use forced subtitles only].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [use forced subtitles only]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool UseForcedSubtitlesOnly { get; set; }
|
2013-07-08 09:13:21 -07: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; }
|
|
|
|
|
|
|
|
|
|
public bool IsDisabled { get; set; }
|
|
|
|
|
|
2013-10-26 15:01:21 -07:00
|
|
|
|
public bool DisplayMissingEpisodes { get; set; }
|
|
|
|
|
public bool DisplayUnairedEpisodes { get; set; }
|
2013-10-30 08:55:55 -07:00
|
|
|
|
public bool EnableRemoteControlOfOtherUsers { get; set; }
|
2013-10-26 15:01:21 -07:00
|
|
|
|
|
2014-01-13 13:31:09 -07:00
|
|
|
|
public bool EnableLiveTvManagement { get; set; }
|
2014-01-23 14:09:00 -07:00
|
|
|
|
public bool EnableLiveTvAccess { get; set; }
|
2014-01-22 19:19:04 -07:00
|
|
|
|
|
|
|
|
|
public bool EnableMediaPlayback { get; set; }
|
2014-02-20 22:04:11 -07:00
|
|
|
|
|
|
|
|
|
public string[] BlockedMediaFolders { get; set; }
|
|
|
|
|
|
2014-02-21 08:24:29 -07:00
|
|
|
|
public UnratedItem[] BlockUnratedItems { get; set; }
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="UserConfiguration" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public UserConfiguration()
|
|
|
|
|
{
|
|
|
|
|
IsAdministrator = true;
|
2013-10-30 08:55:55 -07:00
|
|
|
|
EnableRemoteControlOfOtherUsers = true;
|
2014-01-13 13:31:09 -07:00
|
|
|
|
|
|
|
|
|
EnableLiveTvManagement = true;
|
2014-01-22 19:19:04 -07:00
|
|
|
|
EnableMediaPlayback = true;
|
2014-01-23 14:09:00 -07:00
|
|
|
|
EnableLiveTvAccess = true;
|
2014-02-20 22:04:11 -07:00
|
|
|
|
|
|
|
|
|
BlockedMediaFolders = new string[] { };
|
2014-02-21 08:24:29 -07:00
|
|
|
|
BlockUnratedItems = new UnratedItem[] { };
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-21 08:24:29 -07:00
|
|
|
|
|
|
|
|
|
public enum UnratedItem
|
|
|
|
|
{
|
|
|
|
|
Movie,
|
|
|
|
|
Trailer,
|
|
|
|
|
Series,
|
|
|
|
|
Music,
|
|
|
|
|
Game,
|
|
|
|
|
Book,
|
|
|
|
|
LiveTvChannel,
|
|
|
|
|
LiveTvProgram,
|
|
|
|
|
Other
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|