mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-19 08:36:37 +00:00
#551 - Add manual image selection for movies
This commit is contained in:
@@ -82,6 +82,7 @@
|
||||
<Compile Include="Notifications\NotificationQuery.cs" />
|
||||
<Compile Include="Notifications\NotificationResult.cs" />
|
||||
<Compile Include="Notifications\NotificationsSummary.cs" />
|
||||
<Compile Include="Providers\RemoteImageResult.cs" />
|
||||
<Compile Include="Querying\ArtistsQuery.cs" />
|
||||
<Compile Include="Querying\ItemCountsQuery.cs" />
|
||||
<Compile Include="Querying\ItemReviewsResult.cs" />
|
||||
|
||||
22
MediaBrowser.Model/Providers/RemoteImageResult.cs
Normal file
22
MediaBrowser.Model/Providers/RemoteImageResult.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// Class RemoteImageResult.
|
||||
/// </summary>
|
||||
public class RemoteImageResult
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the images.
|
||||
/// </summary>
|
||||
/// <value>The images.</value>
|
||||
public List<RemoteImageInfo> Images { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the total record count.
|
||||
/// </summary>
|
||||
/// <value>The total record count.</value>
|
||||
public int TotalRecordCount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user