mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04: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);
|
|
}
|
|
}
|