//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#nullable disable
#pragma warning disable CS1591
using global::System;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Configuration;
public class MetadataPluginSummary
{
public MetadataPluginSummary()
{
SupportedImageTypes = Array.Empty();
Plugins = Array.Empty();
}
///
/// 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; }
}