You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Library
|
|
|
|
|
{
|
|
|
|
|
public class UserViewQuery
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user identifier.</value>
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether [include external content].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [include external content]; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool IncludeExternalContent { get; set; }
|
|
|
|
|
|
|
|
|
|
public UserViewQuery()
|
|
|
|
|
{
|
|
|
|
|
IncludeExternalContent = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|