mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 13:45:02 +00:00
removed feed. to be replaced with System.ServiceModel.Syndication.SyndicationItem
This commit is contained in:
parent
a49850cc89
commit
d18029fe5b
3 changed files with 0 additions and 19 deletions
|
@ -181,8 +181,6 @@ namespace NzbDrone.Core.Test
|
||||||
var target = new SabProvider(config.Object, new Mock<ILog>().Object, http.Object);
|
var target = new SabProvider(config.Object, new Mock<ILog>().Object, http.Object);
|
||||||
|
|
||||||
Episode episode = new Episode();
|
Episode episode = new Episode();
|
||||||
FeedItem item = new FeedItem();
|
|
||||||
item.TitleFix = "Ubuntu Test";
|
|
||||||
|
|
||||||
//Act
|
//Act
|
||||||
bool result = target.IsInQueue(episode);
|
bool result = target.IsInQueue(episode);
|
||||||
|
|
|
@ -145,7 +145,6 @@
|
||||||
<Compile Include="Providers\SabProvider.cs" />
|
<Compile Include="Providers\SabProvider.cs" />
|
||||||
<Compile Include="Repository\Config.cs" />
|
<Compile Include="Repository\Config.cs" />
|
||||||
<Compile Include="Repository\Episode.cs" />
|
<Compile Include="Repository\Episode.cs" />
|
||||||
<Compile Include="Repository\FeedItem.cs" />
|
|
||||||
<Compile Include="Repository\ItemInfo.cs" />
|
<Compile Include="Repository\ItemInfo.cs" />
|
||||||
<Compile Include="Repository\Quality.cs" />
|
<Compile Include="Repository\Quality.cs" />
|
||||||
<Compile Include="Repository\Site.cs" />
|
<Compile Include="Repository\Site.cs" />
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Repository
|
|
||||||
{
|
|
||||||
public class FeedItem
|
|
||||||
{
|
|
||||||
//Item from the NZB Feed waiting tp be processed.
|
|
||||||
public string Description { get; set; }
|
|
||||||
public string Title { get; set; }
|
|
||||||
public string TitleFix { get; set; }
|
|
||||||
public string NzbId { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue