aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ILocalImageFileProvider.cs
blob: 7e5d828437da9ef89189a07c5c3615c082261272 (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(IHasImages item, IDirectoryService directoryService);
    }
}