2014-02-11 04:55:01 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Providers
|
2013-11-05 15:38:59 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ImageProviderInfo.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ImageProviderInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
2014-02-11 04:55:01 +00:00
|
|
|
|
|
2017-08-19 19:43:35 +00:00
|
|
|
|
public ImageType[] SupportedImages { get; set; }
|
2014-02-11 04:55:01 +00:00
|
|
|
|
|
|
|
|
|
public ImageProviderInfo()
|
|
|
|
|
{
|
2017-08-19 19:43:35 +00:00
|
|
|
|
SupportedImages = new ImageType[] { };
|
2014-02-11 04:55:01 +00:00
|
|
|
|
}
|
2013-11-05 15:38:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|