2014-02-10 23:55:01 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Providers
|
2013-11-05 10:38:59 -05: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-10 23:55:01 -05:00
|
|
|
|
|
2017-08-19 15:43:35 -04:00
|
|
|
|
public ImageType[] SupportedImages { get; set; }
|
2014-02-10 23:55:01 -05:00
|
|
|
|
|
|
|
|
|
|
public ImageProviderInfo()
|
|
|
|
|
|
{
|
2017-08-19 15:43:35 -04:00
|
|
|
|
SupportedImages = new ImageType[] { };
|
2014-02-10 23:55:01 -05:00
|
|
|
|
}
|
2013-11-05 10:38:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|