mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
12 lines
269 B
C#
12 lines
269 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterLyrics.Core.Interfaces
|
|
{
|
|
public interface ILyricsTransliterationPlugin : IPlugin
|
|
{
|
|
Task<string?> GetTransliterationAsync(string text, string targetLangCode);
|
|
}
|
|
}
|