Rearanged episodes object, added method stubs

This commit is contained in:
Keivan
2010-09-28 12:32:19 -07:00
parent de212f8b98
commit 8d47bcbe5e
7 changed files with 172 additions and 34 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.ServiceModel.Syndication;
using SubSonic.SqlGeneration.Schema;
namespace NzbDrone.Core.Repository
{
public class RemoteEpisode : Episode
{
[SubSonicIgnore]
public SyndicationItem Feed { get; set; }
}
}