1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 04:25:55 +00:00
Lidarr/NzbDrone.Core/Indexers/Wombles/WomblesParser.cs
2013-09-13 16:20:35 -07:00

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