2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2020-03-09 08:10:02 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
namespace MediaBrowser.Controller.Providers
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-09 08:10:02 -07:00
|
|
|
/// This is just a marker interface.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public interface ILocalImageProvider : IImageProvider
|
|
|
|
{
|
2021-03-08 21:57:38 -07:00
|
|
|
IEnumerable<LocalImageInfo> GetImages(BaseItem item, IDirectoryService directoryService);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|