mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-18 10:41:44 +02:00
12 lines
304 B
C#
12 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);
|
|
}
|
|
}
|