mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-07 15:07:41 +00:00
![markus101](/assets/img/avatar_default.png)
Some RssFeed Parsing has been implemented, it does not currently download items, still need to perform a more verbose episode check.
14 lines
274 B
C#
14 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Model;
|
|
using Rss;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface IRssProvider
|
|
{
|
|
IEnumerable<RssItem> GetFeed(FeedInfoModel feedInfo);
|
|
}
|
|
}
|