mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
17 lines
336 B
C#
17 lines
336 B
C#
using System.Xml.Linq;
|
|
|
|
namespace NzbDrone.Core.Indexers.Wombles
|
|
{
|
|
public class WomblesParser : RssParserBase
|
|
{
|
|
protected override string GetNzbInfoUrl(XElement item)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
protected override long GetSize(XElement item)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
} |