mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 04:25:55 +00:00
17 lines
No EOL
336 B
C#
17 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |