You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Engine/Interfaces/IMusicSearchEngineV2.cs

14 lines
499 B

using System.Threading;
using System.Threading.Tasks;
using Ombi.Core.Models.Search.V2.Music;
namespace Ombi.Core.Engine.Interfaces
{
public interface IMusicSearchEngineV2
{
Task<ArtistInformation> GetArtistInformation(string artistId);
Task<ArtistInformation> GetArtistInformationByRequestId(int requestId);
Task<AlbumArt> GetReleaseGroupArt(string musicBrainzId, CancellationToken token);
Task<AlbumInformation> GetAlbumInformation(string albumId);
}
}