fixes #709 - Add option to show all languages in image interface

This commit is contained in:
Luke Pulverenti
2014-02-11 22:30:50 -05:00
parent e048a9214d
commit f64f55c894
7 changed files with 53 additions and 15 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Providers
{
@@ -25,4 +26,15 @@ namespace MediaBrowser.Model.Providers
/// <value>The providers.</value>
public List<string> Providers { get; set; }
}
public class RemoteImageQuery
{
public string ProviderName { get; set; }
public ImageType? ImageType { get; set; }
public bool IncludeDisabledProviders { get; set; }
public bool IncludeAllLanguages { get; set; }
}
}