mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
18 lines
446 B
C#
18 lines
446 B
C#
using System;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class EpisodeGrabbedEvent : IEvent
|
|
{
|
|
public RemoteEpisode Episode { get; private set; }
|
|
public String DownloadClient { get; set; }
|
|
public String DownloadId { get; set; }
|
|
|
|
public EpisodeGrabbedEvent(RemoteEpisode episode)
|
|
{
|
|
Episode = episode;
|
|
}
|
|
}
|
|
} |