mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
17 lines
392 B
C#
17 lines
392 B
C#
using BetterLyrics.Core.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterLyrics.Core.Interfaces
|
|
{
|
|
public interface ILyricsProvider
|
|
{
|
|
string Id { get; }
|
|
string Name { get; }
|
|
string Author { get; }
|
|
|
|
Task<LyricsSearchResult> GetLyricsAsync(string title, string artist, string album, double duration);
|
|
}
|
|
}
|