mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
updated nuget
This commit is contained in:
@@ -50,7 +50,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
public BaseApplicationConfiguration()
|
||||
{
|
||||
EnableAutoUpdate = true;
|
||||
LogFileRetentionDays = 14;
|
||||
LogFileRetentionDays = 7;
|
||||
|
||||
#if (DEBUG)
|
||||
EnableDebugLevelLogging = true;
|
||||
|
||||
@@ -96,6 +96,12 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The production year.</value>
|
||||
public int? ProductionYear { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the players supported by a game.
|
||||
/// </summary>
|
||||
/// <value>The players.</value>
|
||||
public int? Players { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the index number.
|
||||
/// </summary>
|
||||
|
||||
@@ -43,12 +43,41 @@ namespace MediaBrowser.Model.Querying
|
||||
/// <value>The fields.</value>
|
||||
public ItemFields[] Fields { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the exclude item types.
|
||||
/// </summary>
|
||||
/// <value>The exclude item types.</value>
|
||||
public string[] ExcludeItemTypes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the include item types.
|
||||
/// </summary>
|
||||
/// <value>The include item types.</value>
|
||||
public string[] IncludeItemTypes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the media types.
|
||||
/// </summary>
|
||||
/// <value>The media types.</value>
|
||||
public string[] MediaTypes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// What to sort the results by
|
||||
/// </summary>
|
||||
/// <value>The sort by.</value>
|
||||
public string[] SortBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ItemsByNameQuery"/> class.
|
||||
/// </summary>
|
||||
public ItemsByNameQuery()
|
||||
{
|
||||
Fields = new ItemFields[] {};
|
||||
Recursive = true;
|
||||
MediaTypes = new string[] { };
|
||||
SortBy = new string[] { };
|
||||
ExcludeItemTypes = new string[] { };
|
||||
IncludeItemTypes = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user