parent
257af8b914
commit
57aaf62a46
@ -0,0 +1,19 @@
|
||||
using NzbDrone.Common.Messaging;
|
||||
using NzbDrone.Core.Music;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles.Events
|
||||
{
|
||||
public class TrackFileRenamedEvent : IEvent
|
||||
{
|
||||
public Artist Artist { get; private set; }
|
||||
public TrackFile TrackFile { get; private set; }
|
||||
public string OriginalPath { get; private set; }
|
||||
|
||||
public TrackFileRenamedEvent(Artist artist, TrackFile trackFile, string originalPath)
|
||||
{
|
||||
Artist = artist;
|
||||
TrackFile = trackFile;
|
||||
OriginalPath = originalPath;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue