2019-01-13 13:02:23 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Providers
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class ImageProviderInfo.
|
|
|
|
/// </summary>
|
|
|
|
public class ImageProviderInfo
|
|
|
|
{
|
2020-04-05 09:10:56 -07:00
|
|
|
public ImageProviderInfo(string name, ImageType[] supportedImages)
|
|
|
|
{
|
|
|
|
Name = name;
|
|
|
|
SupportedImages = supportedImages;
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2020-04-09 10:22:29 -07:00
|
|
|
/// Gets the name.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
2020-04-09 10:22:29 -07:00
|
|
|
public string Name { get; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2020-04-09 10:22:29 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the supported image types.
|
|
|
|
/// </summary>
|
|
|
|
public ImageType[] SupportedImages { get; }
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|