#nullable disable
namespace MediaBrowser.Model.Providers
{
    /// 
    /// Class RemoteImageResult.
    /// 
    public class RemoteImageResult
    {
        /// 
        /// Gets or sets the images.
        /// 
        /// The images.
        public RemoteImageInfo[] 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 string[] Providers { get; set; }
    }
}