removed feed. to be replaced with System.ServiceModel.Syndication.SyndicationItem

This commit is contained in:
Keivan 2010-09-27 22:15:08 -07:00
parent a49850cc89
commit d18029fe5b
3 changed files with 0 additions and 19 deletions

View File

@ -181,8 +181,6 @@ namespace NzbDrone.Core.Test
var target = new SabProvider(config.Object, new Mock<ILog>().Object, http.Object);
Episode episode = new Episode();
FeedItem item = new FeedItem();
item.TitleFix = "Ubuntu Test";
//Act
bool result = target.IsInQueue(episode);

View File

@ -145,7 +145,6 @@
<Compile Include="Providers\SabProvider.cs" />
<Compile Include="Repository\Config.cs" />
<Compile Include="Repository\Episode.cs" />
<Compile Include="Repository\FeedItem.cs" />
<Compile Include="Repository\ItemInfo.cs" />
<Compile Include="Repository\Quality.cs" />
<Compile Include="Repository\Site.cs" />

View File

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