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.
|
|
|
|
using NzbDrone.Common.Messaging;
|
|
|
|
|
using NzbDrone.Core.Music;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Events
|
|
|
|
|
{
|
|
|
|
|
public class ArtistScanSkippedEvent : IEvent
|
|
|
|
|
{
|
|
|
|
|
public Artist Artist { get; private set; }
|
|
|
|
|
public ArtistScanSkippedReason Reason { get; private set; }
|
|
|
|
|
|
|
|
|
|
public ArtistScanSkippedEvent(Artist artist, ArtistScanSkippedReason reason)
|
|
|
|
|
{
|
|
|
|
|
Artist = artist;
|
|
|
|
|
Reason = reason;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ArtistScanSkippedReason
|
|
|
|
|
{
|
|
|
|
|
RootFolderDoesNotExist,
|
|
|
|
|
RootFolderIsEmpty
|
|
|
|
|
}
|
|
|
|
|
}
|