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:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user