mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-11 14:59:46 +02:00
16 lines
309 B
C#
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;
|
|
}
|
|
}
|
|
}
|