mirror of
https://github.com/Readarr/Readarr
synced 2026-05-05 19:20:27 +02:00
14 lines
285 B
C#
14 lines
285 B
C#
using NzbDrone.Common.Messaging;
|
|
|
|
namespace NzbDrone.Core.Music.Events
|
|
{
|
|
public class ArtistUpdatedEvent : IEvent
|
|
{
|
|
public Artist Artist { get; private set; }
|
|
|
|
public ArtistUpdatedEvent(Artist artist)
|
|
{
|
|
Artist = artist;
|
|
}
|
|
}
|
|
}
|