mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
15 lines
334 B
C#
15 lines
334 B
C#
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class EpisodeGrabbedEvent : IEvent
|
|
{
|
|
public RemoteEpisode Episode { get; private set; }
|
|
|
|
public EpisodeGrabbedEvent(RemoteEpisode episode)
|
|
{
|
|
Episode = episode;
|
|
}
|
|
}
|
|
} |