namespace MediaBrowser.Model.Library
{
public class UserViewQuery
{
///
/// Gets or sets the user identifier.
///
/// The user identifier.
public string UserId { get; set; }
///
/// Gets or sets a value indicating whether [include external content].
///
/// true if [include external content]; otherwise, false.
public bool IncludeExternalContent { get; set; }
public UserViewQuery()
{
IncludeExternalContent = true;
}
}
}