aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/RemoteImageResult.cs
blob: 1c60db6ae18df0bda7364565c8dc04162769d322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System.Collections.Generic;

namespace MediaBrowser.Model.Providers
{
    /// <summary>
    /// Class RemoteImageResult.
    /// </summary>
    public class RemoteImageResult
    {
        /// <summary>
        /// Gets or sets the images.
        /// </summary>
        /// <value>The images.</value>
        public List<RemoteImageInfo> Images { get; set; }

        /// <summary>
        /// Gets or sets the total record count.
        /// </summary>
        /// <value>The total record count.</value>
        public int TotalRecordCount { get; set; }

        /// <summary>
        /// Gets or sets the providers.
        /// </summary>
        /// <value>The providers.</value>
        public List<string> Providers { get; set; }
    }
}