mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 18:59:54 +00:00
10 lines
No EOL
218 B
C#
10 lines
No EOL
218 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IParseFeed
|
|
{
|
|
IEnumerable<ReleaseInfo> Process(string source, string url);
|
|
}
|
|
} |