You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/src/NzbDrone.Core/MediaCover/MediaCoversUpdatedEvent.cs

18 lines
391 B

using NzbDrone.Common.Messaging;
using NzbDrone.Core.Movies;
namespace NzbDrone.Core.MediaCover
{
public class MediaCoversUpdatedEvent : IEvent
{
public Movie Movie { get; set; }
public bool Updated { get; set; }
public MediaCoversUpdatedEvent(Movie movie, bool updated)
{
Movie = movie;
Updated = updated;
}
}
}