mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
13 lines
305 B
C#
13 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface IProvideArtistInfo
|
|
{
|
|
Artist GetArtistInfo(string readarrId, int metadataProfileId);
|
|
HashSet<string> GetChangedArtists(DateTime startTime);
|
|
}
|
|
}
|