mirror of https://github.com/Sonarr/Sonarr
13 lines
325 B
C#
13 lines
325 B
C#
using System.ServiceModel.Syndication;
|
|
using NzbDrone.Core.Entities.Quality;
|
|
|
|
namespace NzbDrone.Core.Entities.Episode
|
|
{
|
|
public class RemoteEpisode : BasicEpisode
|
|
{
|
|
public QualityTypes Quality { get; set; }
|
|
public SyndicationItem Feed { get; set; }
|
|
public bool Proper { get; set; }
|
|
}
|
|
}
|