1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

PreDB Integration. Update Library is advisable

This commit is contained in:
Leonardo Galli
2017-03-11 00:17:09 +01:00
committed by GitHub
parent 3cf5301e46
commit 149c5292f1
16 changed files with 302 additions and 18 deletions
@@ -0,0 +1,19 @@
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Download;
using System;
using System.Linq;
using System.Collections.Generic;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.MetadataSource.PreDB
{
public class PreDBSyncCompleteEvent : IEvent
{
public List<Movie> NewlyReleased { get; private set; }
public PreDBSyncCompleteEvent(List<Movie> newlyReleased)
{
NewlyReleased = newlyReleased;
}
}
}