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