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.Api.MusicBrainz/IMusicBrainzApi.cs

13 lines
389 B

using System.Collections.Generic;
using System.Threading.Tasks;
5 years ago
using Hqub.MusicBrainz.API.Entities;
namespace Ombi.Api.MusicBrainz
{
public interface IMusicBrainzApi
{
Task<IEnumerable<Artist>> SearchArtist(string artistQuery);
5 years ago
Task<IEnumerable<Release>> GetReleaseForArtist(string artistId);
5 years ago
Task<Artist> GetArtistInformation(string artistId);
}
}