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.
Radarr/src/NzbDrone.Core/ImportLists/Rss/Imdb/ImdbRssImportParser.cs

21 lines
457 B

using System;
using System.Xml.Linq;
using NLog;
using NzbDrone.Core.ImportLists.ImportListMovies;
namespace NzbDrone.Core.ImportLists.Rss.Imdb
{
public class ImdbRssImportParser : RssImportBaseParser
{
public ImdbRssImportParser(Logger logger)
: base(logger)
{
}
protected override ImportListMovie ProcessItem(XElement item)
{
throw new NotImplementedException();
}
}
}