mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
10 lines
218 B
C#
10 lines
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);
|
|
}
|
|
} |