aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ILocalImageFileProvider.cs
blob: 72bc5639090fd166b17f8fd55afa27b8ffcb01c3 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;
using MediaBrowser.Controller.Entities;

namespace MediaBrowser.Controller.Providers
{
    public interface ILocalImageFileProvider : ILocalImageProvider
    {
        List<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService);
    }
}