mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
12 lines
227 B
C#
12 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);
|
|
}
|
|
}
|