mirror of https://github.com/lidarr/Lidarr
17 lines
416 B
C#
17 lines
416 B
C#
|
using NzbDrone.Common.Messaging;
|
|||
|
using NzbDrone.Core.Parser.Model;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Download
|
|||
|
{
|
|||
|
public class AlbumGrabbedEvent : IEvent
|
|||
|
{
|
|||
|
public RemoteAlbum Album { get; private set; }
|
|||
|
public string DownloadClient { get; set; }
|
|||
|
public string DownloadId { get; set; }
|
|||
|
|
|||
|
public AlbumGrabbedEvent(RemoteAlbum album)
|
|||
|
{
|
|||
|
Album = album;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|