mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
16 lines
322 B
C#
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;
|
|
}
|
|
}
|
|
} |