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/MediaFiles/Events/TrackFileRetaggedEvent.cs

27 lines
853 B

using System;
using System.Collections.Generic;
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.MediaFiles.Events
{
public class TrackFileRetaggedEvent : IEvent
{
public Artist Artist { get; private set; }
public TrackFile TrackFile { get; private set; }
public Dictionary<string, Tuple<string, string>> Diff { get; private set; }
public bool Scrubbed { get; private set; }
public TrackFileRetaggedEvent(Artist artist,
TrackFile trackFile,
Dictionary<string, Tuple<string, string>> diff,
bool scrubbed)
{
Artist = artist;
TrackFile = trackFile;
Diff = diff;
Scrubbed = scrubbed;
}
}
}