2013-09-13 23:17:58 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
|
|
{
|
|
|
|
public interface IParseFeed
|
|
|
|
{
|
2014-01-14 03:47:45 +00:00
|
|
|
IEnumerable<ReleaseInfo> Process(string xml, string url);
|
2013-09-13 23:17:58 +00:00
|
|
|
}
|
|
|
|
}
|