mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-23 14:30:49 +00:00
8 lines
No EOL
206 B
C#
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()
|
|
{
|
|
}
|
|
} |