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

13 lines
300 B
C#
Raw Normal View History

using NzbDrone.Core.Music;
using System;
using System.Collections.Generic;
using NzbDrone.Core.Profiles.Metadata;
namespace NzbDrone.Core.MetadataSource
{
public interface IProvideArtistInfo
{
Tuple<Artist, List<Album>> GetArtistInfo(string lidarrId, int metadataProfileId);
}
}