// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable CS1591 using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Providers; public class RemoteImageQuery { /// /// Initializes a new instance of the class. /// /// The name of the image provider. public RemoteImageQuery(string providerName) { ProviderName = providerName; } public string ProviderName { get; } public ImageType? ImageType { get; set; } public bool IncludeDisabledProviders { get; set; } public bool IncludeAllLanguages { get; set; } }