mirror of https://github.com/Radarr/Radarr
16 lines
387 B
C#
16 lines
387 B
C#
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Download;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public class RssSyncCompleteEvent : IEvent
|
|
{
|
|
public ProcessedDecisions ProcessedDecisions { get; private set; }
|
|
|
|
public RssSyncCompleteEvent(ProcessedDecisions processedDecisions)
|
|
{
|
|
ProcessedDecisions = processedDecisions;
|
|
}
|
|
}
|
|
}
|