#pragma warning disable CS1591 using System; 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 ImageType[] SupportedImages { get; set; } public ImageProviderInfo() { SupportedImages = Array.Empty(); } } }