mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
18 lines
466 B
C#
18 lines
466 B
C#
|
using NzbDrone.Core.Datastore;
|
||
|
using NzbDrone.Core.Messaging.Events;
|
||
|
|
||
|
namespace NzbDrone.Core.Restrictions
|
||
|
{
|
||
|
public interface IRestrictionRepository : IBasicRepository<Restriction>
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public class RestrictionRepository : BasicRepository<Restriction>, IRestrictionRepository
|
||
|
{
|
||
|
public RestrictionRepository(IDatabase database, IEventAggregator eventAggregator)
|
||
|
: base(database, eventAggregator)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|