From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- .../Configuration/MetadataPluginSummary.cs | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 MediaBrowser.Model/Configuration/MetadataPluginSummary.cs (limited to 'MediaBrowser.Model/Configuration/MetadataPluginSummary.cs') diff --git a/MediaBrowser.Model/Configuration/MetadataPluginSummary.cs b/MediaBrowser.Model/Configuration/MetadataPluginSummary.cs new file mode 100644 index 000000000..80142cf43 --- /dev/null +++ b/MediaBrowser.Model/Configuration/MetadataPluginSummary.cs @@ -0,0 +1,32 @@ +using System.Collections.Generic; +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 = new ImageType[] { }; + Plugins = new MetadataPlugin[] { }; + } + } +} \ No newline at end of file -- cgit v1.2.3