2011-04-04 03:50:12 +00:00
|
|
|
|
using System.Collections.Generic;
|
2011-01-29 06:10:22 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using Rss;
|
|
|
|
|
|
2011-04-04 03:50:12 +00:00
|
|
|
|
namespace NzbDrone.Core.Providers.Core
|
2011-01-29 06:10:22 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IRssProvider
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<RssItem> GetFeed(FeedInfoModel feedInfo);
|
|
|
|
|
}
|
|
|
|
|
}
|