Lidarr/src/NzbDrone.Core/MetadataSource/IProvideArtistInfo.cs

13 lines
304 B
C#

using System;
using System.Collections.Generic;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.MetadataSource
{
public interface IProvideArtistInfo
{
Artist GetArtistInfo(string lidarrId, int metadataProfileId);
HashSet<string> GetChangedArtists(DateTime startTime);
}
}