aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/IImageSaver.cs
blob: 62017160f4d9b2a1b0895b0ec2397ae28aee0d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Controller.Providers
{
    public interface IImageSaver
    {
        /// <summary>
        /// Gets the name.
        /// </summary>
        /// <value>The name.</value>
        string Name { get; }
    }
}