mirror of https://github.com/lidarr/Lidarr
18 lines
417 B
C#
18 lines
417 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;
|
|
}
|
|
}
|
|
}
|