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/ArtistsImportedEvent.cs

16 lines
338 B

using System.Collections.Generic;
using NzbDrone.Common.Messaging;
namespace NzbDrone.Core.Music.Events
{
public class ArtistsImportedEvent : IEvent
{
public List<int> ArtistIds { get; private set; }
public ArtistsImportedEvent(List<int> artistIds)
{
ArtistIds = artistIds;
}
}
}