aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IMetadataFileSaver.cs
blob: 842c687d1d46dc4b2c5c717da57cbbe97780fc23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma warning disable CS1591

using MediaBrowser.Controller.Entities;

namespace MediaBrowser.Controller.Library
{
    public interface IMetadataFileSaver : IMetadataSaver
    {
        /// <summary>
        /// Gets the save path.
        /// </summary>
        /// <param name="item">The item.</param>
        /// <returns>System.String.</returns>
        string GetSavePath(BaseItem item);
    }
}