hide image buttons when there are no providers

This commit is contained in:
Luke Pulverenti
2013-11-05 10:38:59 -05:00
parent 3f4784f788
commit 36dc3a5318
7 changed files with 110 additions and 5 deletions

View File

@@ -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" />

View 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; }
}
}