Files
Readarr/src/NzbDrone.Core/MetadataSource/IProvideArtistInfo.cs
T
2020-02-29 16:58:13 -05:00

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);
}
}