mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
17 lines
401 B
C#
17 lines
401 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Movies;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.PreDB
|
|
{
|
|
public class PreDBSyncCompleteEvent : IEvent
|
|
{
|
|
public List<Movie> NewlyReleased { get; private set; }
|
|
|
|
public PreDBSyncCompleteEvent(List<Movie> newlyReleased)
|
|
{
|
|
NewlyReleased = newlyReleased;
|
|
}
|
|
}
|
|
}
|