mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
update translations
This commit is contained in:
23
MediaBrowser.Model/Library/UserViewQuery.cs
Normal file
23
MediaBrowser.Model/Library/UserViewQuery.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user