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