1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/src/NzbDrone.Core/ThingiProvider/IProviderRepository.cs
2015-01-20 16:44:39 -08:00

9 lines
267 B
C#

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.ThingiProvider
{
public interface IProviderRepository<TProvider> : IBasicRepository<TProvider> where TProvider : ModelBase, new()
{
// void DeleteImplementations(string implementation);
}
}