1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-06 11:50:56 +02:00
Sonarr/NzbDrone.Core/DataAugmentation/Scene/SceneMappingRepository.cs

20 lines
481 B
C#
Raw Normal View History

2013-03-02 10:25:39 -08:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
2013-09-10 23:33:47 -07:00
2013-03-02 10:25:39 -08:00
2013-03-31 19:43:58 -07:00
namespace NzbDrone.Core.DataAugmentation.Scene
2013-03-02 10:25:39 -08:00
{
public interface ISceneMappingRepository : IBasicRepository<SceneMapping>
{
}
public class SceneMappingRepository : BasicRepository<SceneMapping>, ISceneMappingRepository
{
public SceneMappingRepository(IDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
2013-03-02 10:25:39 -08:00
{
}
}
}