aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ILocalImageProvider.cs
blob: 463c81376d796daed5621ed957ccaa33b93696fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Collections.Generic;
using MediaBrowser.Controller.Entities;

namespace MediaBrowser.Controller.Providers
{
    /// <summary>
    /// This is just a marker interface.
    /// </summary>
    public interface ILocalImageProvider : IImageProvider
    {
        List<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService);
    }
}