mirror of https://github.com/lidarr/Lidarr
20 lines
481 B
C#
20 lines
481 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|
{
|
|
public interface ISceneMappingRepository : IBasicRepository<SceneMapping>
|
|
{
|
|
|
|
}
|
|
|
|
public class SceneMappingRepository : BasicRepository<SceneMapping>, ISceneMappingRepository
|
|
{
|
|
public SceneMappingRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
|
|
}
|
|
} |