mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
12 lines
260 B
C#
12 lines
260 B
C#
using System;
|
|
using System.ServiceModel.Syndication;
|
|
using SubSonic.SqlGeneration.Schema;
|
|
|
|
namespace NzbDrone.Core.Repository
|
|
{
|
|
public class RemoteEpisode : Episode
|
|
{
|
|
[SubSonicIgnore]
|
|
public SyndicationItem Feed { get; set; }
|
|
}
|
|
} |