You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/NzbDrone.Core/Indexers/Wombles/WomblesParser.cs

17 lines
336 B

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;
}
}
}