mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-31 19:41:27 +00:00
11 lines
227 B
C#
11 lines
227 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model;
|
|
using Rss;
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
|
{
|
|
public interface IRssProvider
|
|
{
|
|
IEnumerable<RssItem> GetFeed(FeedInfoModel feedInfo);
|
|
}
|
|
}
|