1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00
Files
Radarr/NzbDrone.Core/Download/SeriesRenamedEvent.cs
T
2013-02-24 15:47:57 -08:00

16 lines
322 B
C#

using System.Linq;
using NzbDrone.Common.Eventing;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.Download
{
public class SeriesRenamedEvent : IEvent
{
public Series Series { get; private set; }
public SeriesRenamedEvent(Series series)
{
Series = series;
}
}
}