using System;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Configuration
{
public class MetadataPluginSummary
{
///
/// Gets or sets the type of the item.
///
/// The type of the item.
public string ItemType { get; set; }
///
/// Gets or sets the plugins.
///
/// The plugins.
public MetadataPlugin[] Plugins { get; set; }
///
/// Gets or sets the supported image types.
///
/// The supported image types.
public ImageType[] SupportedImageTypes { get; set; }
public MetadataPluginSummary()
{
SupportedImageTypes = Array.Empty();
Plugins = Array.Empty();
}
}
}