mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04: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; }
|
|
}
|
|
} |