Lidarr/src/NzbDrone.Core/DataAugmentation/Scene/ISceneMappingProvider.cs

10 lines
191 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.DataAugmentation.Scene
{
public interface ISceneMappingProvider
{
List<SceneMapping> GetSceneMappings();
}
}