mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 14:58:36 +01:00
hide image buttons when there are no providers
This commit is contained in:
@@ -61,6 +61,7 @@
|
||||
<Compile Include="Dto\ItemIndex.cs" />
|
||||
<Compile Include="LiveTv\EpgFullInfo.cs" />
|
||||
<Compile Include="LiveTv\EpgInfo.cs" />
|
||||
<Compile Include="Providers\ImageProviderInfo.cs" />
|
||||
<Compile Include="Providers\RemoteImageInfo.cs" />
|
||||
<Compile Include="Dto\StudioDto.cs" />
|
||||
<Compile Include="Entities\CollectionType.cs" />
|
||||
|
||||
20
MediaBrowser.Model/Providers/ImageProviderInfo.cs
Normal file
20
MediaBrowser.Model/Providers/ImageProviderInfo.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace MediaBrowser.Model.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// Class ImageProviderInfo.
|
||||
/// </summary>
|
||||
public class ImageProviderInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the priority.
|
||||
/// </summary>
|
||||
/// <value>The priority.</value>
|
||||
public int Priority { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user