using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Providers
{
///
/// Class RemoteImageResult.
///
public class RemoteImageResult
{
///
/// Gets or sets the images.
///
/// The images.
public List Images { get; set; }
///
/// Gets or sets the total record count.
///
/// The total record count.
public int TotalRecordCount { get; set; }
///
/// Gets or sets the providers.
///
/// The providers.
public List Providers { get; set; }
}
public class RemoteImageQuery
{
public string ProviderName { get; set; }
public ImageType? ImageType { get; set; }
public bool IncludeDisabledProviders { get; set; }
public bool IncludeAllLanguages { get; set; }
}
}