You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Music/Events/ArtistsDeletedEvent.cs

20 lines
600 B

using System.Collections.Generic;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Music.Events
{
public class ArtistsDeletedEvent : IEvent
{
public List<Artist> Artists { get; private set; }
public bool DeleteFiles { get; private set; }
public bool AddImportListExclusion { get; private set; }
public ArtistsDeletedEvent(List<Artist> artists, bool deleteFiles, bool addImportListExclusion)
{
Artists = artists;
DeleteFiles = deleteFiles;
AddImportListExclusion = addImportListExclusion;
}
}
}