mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-08 00:39:25 +01:00
update translations
This commit is contained in:
@@ -43,9 +43,17 @@
|
||||
/// <value>The limit.</value>
|
||||
public int? Limit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the content types.
|
||||
/// </summary>
|
||||
/// <value>The content types.</value>
|
||||
public ChannelMediaContentType[] ContentTypes { get; set; }
|
||||
|
||||
public AllChannelMediaQuery()
|
||||
{
|
||||
ChannelIds = new string[] { };
|
||||
|
||||
ContentTypes = new ChannelMediaContentType[] { };
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using MediaBrowser.Model.Extensions;
|
||||
using System.Diagnostics;
|
||||
using System.Runtime.Serialization;
|
||||
using MediaBrowser.Model.Extensions;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -28,6 +28,12 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// </summary>
|
||||
/// <value>The original primary image aspect ratio.</value>
|
||||
public double? OriginalPrimaryImageAspectRatio { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the type of the media.
|
||||
/// </summary>
|
||||
/// <value>The type of the media.</value>
|
||||
public string MediaType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the timer identifier.
|
||||
|
||||
@@ -157,6 +157,7 @@
|
||||
<Compile Include="Globalization\LocalizatonOption.cs" />
|
||||
<Compile Include="IO\FileSystemEntryType.cs" />
|
||||
<Compile Include="Library\PlayAccess.cs" />
|
||||
<Compile Include="Library\UserViewQuery.cs" />
|
||||
<Compile Include="LiveTv\BaseTimerInfoDto.cs" />
|
||||
<Compile Include="LiveTv\ChannelInfoDto.cs" />
|
||||
<Compile Include="LiveTv\LiveTvChannelQuery.cs" />
|
||||
|
||||
Reference in New Issue
Block a user