mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
53c2962d2a
New: Required terms assignable to series via tags New: Ignored terms assignable to series via tagss
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)
|
|
{
|
|
}
|
|
}
|
|
}
|