mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-14 11:40:42 +01:00
pass requested fields to data layer
This commit is contained in:
@@ -168,6 +168,8 @@ namespace MediaBrowser.Model.Configuration
|
||||
public MetadataOptions[] MetadataOptions { get; set; }
|
||||
|
||||
public bool EnableAutomaticRestart { get; set; }
|
||||
public bool SkipDeserializationForBasicTypes { get; set; }
|
||||
public bool SkipDeserializationForPrograms { get; set; }
|
||||
|
||||
public PathSubstitution[] PathSubstitutions { get; set; }
|
||||
|
||||
|
||||
@@ -787,11 +787,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <value>The home page URL.</value>
|
||||
public string HomePageUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the production locations.
|
||||
/// </summary>
|
||||
/// <value>The production locations.</value>
|
||||
public List<string> ProductionLocations { get; set; }
|
||||
public string PlaceOfBirth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the budget.
|
||||
|
||||
@@ -396,7 +396,6 @@
|
||||
<Compile Include="Updates\CheckForUpdateResult.cs" />
|
||||
<Compile Include="Updates\PackageTargetSystem.cs" />
|
||||
<Compile Include="Updates\InstallationInfo.cs" />
|
||||
<Compile Include="Updates\PackageType.cs" />
|
||||
<Compile Include="Updates\PackageVersionClass.cs" />
|
||||
<Compile Include="Entities\EmptyRequestResult.cs" />
|
||||
<Compile Include="Configuration\UserConfiguration.cs" />
|
||||
|
||||
@@ -130,6 +130,8 @@
|
||||
/// </summary>
|
||||
Metascore,
|
||||
|
||||
OfficialRatingDescription,
|
||||
|
||||
OriginalTitle,
|
||||
|
||||
/// <summary>
|
||||
@@ -152,6 +154,8 @@
|
||||
/// </summary>
|
||||
People,
|
||||
|
||||
PlaceOfBirth,
|
||||
|
||||
/// <summary>
|
||||
/// The production locations
|
||||
/// </summary>
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace MediaBrowser.Model.Updates
|
||||
/// The internal id of this package.
|
||||
/// </summary>
|
||||
/// <value>The id.</value>
|
||||
public int id { get; set; }
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
@@ -66,7 +66,7 @@ namespace MediaBrowser.Model.Updates
|
||||
/// Gets or sets the type.
|
||||
/// </summary>
|
||||
/// <value>The type.</value>
|
||||
public PackageType type { get; set; }
|
||||
public string type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the target filename.
|
||||
@@ -127,7 +127,7 @@ namespace MediaBrowser.Model.Updates
|
||||
/// Gets or sets the total number of ratings for this package.
|
||||
/// </summary>
|
||||
/// <value>The total ratings.</value>
|
||||
public int totalRatings { get; set; }
|
||||
public int? totalRatings { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the average rating for this package .
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
namespace MediaBrowser.Model.Updates
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum PackageType
|
||||
/// </summary>
|
||||
public enum PackageType
|
||||
{
|
||||
/// <summary>
|
||||
/// All
|
||||
/// </summary>
|
||||
All,
|
||||
/// <summary>
|
||||
/// The system
|
||||
/// </summary>
|
||||
System,
|
||||
/// <summary>
|
||||
/// The user installed
|
||||
/// </summary>
|
||||
UserInstalled
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user