mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-27 07:01:48 +02:00
11 lines
241 B
C#
11 lines
241 B
C#
using NzbDrone.Core.Music;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface IProvideArtistInfo
|
|
{
|
|
Tuple<Artist, List<Album>> GetArtistInfo(string lidarrId);
|
|
}
|
|
}
|