mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
19 lines
451 B
C#
19 lines
451 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
namespace NzbDrone.Core.Profiles
|
|
{
|
|
public interface IProfileRepository : IBasicRepository<Profile>
|
|
{
|
|
|
|
}
|
|
|
|
public class ProfileRepository : BasicRepository<Profile>, IProfileRepository
|
|
{
|
|
public ProfileRepository(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
}
|
|
}
|