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