1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 13:14:58 +00:00
Sonarr/NzbDrone.Core/Tv/Events/SeriesUpdatedEvent.cs
2013-09-12 15:42:01 -07:00

14 lines
No EOL
281 B
C#

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