1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-23 14:30:49 +00:00
Lidarr/NzbDrone.Core/ThingiProvider/IProviderRepository.cs
2013-10-01 10:13:40 -07:00

8 lines
No EOL
206 B
C#

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