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