using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Providers
{
///
/// Class ImageProviderInfo.
///
public class ImageProviderInfo
{
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
public List SupportedImages { get; set; }
public ImageProviderInfo()
{
SupportedImages = new List();
}
}
}