1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-11 14:59:46 +02:00
Sonarr/src/NzbDrone.Core/MediaCover/MediaCoversUpdatedEvent.cs
2014-02-12 01:04:56 -08:00

16 lines
309 B
C#

using NzbDrone.Common.Messaging;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.MediaCover
{
public class MediaCoversUpdatedEvent : IEvent
{
public Series Series { get; set; }
public MediaCoversUpdatedEvent(Series series)
{
Series = series;
}
}
}