10 lines
191 B
C#
10 lines
191 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|||
|
{
|
|||
|
public interface ISceneMappingProvider
|
|||
|
{
|
|||
|
List<SceneMapping> GetSceneMappings();
|
|||
|
}
|
|||
|
}
|