mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:08:33 +08:00
23 lines
411 B
C#
23 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Enums
|
|
{
|
|
public enum TranslationSearchProvider
|
|
{
|
|
QQ,
|
|
Kugou,
|
|
Netease,
|
|
LrcLib,
|
|
AmllTtmlDb,
|
|
LocalMusicFile,
|
|
LocalLrcFile,
|
|
LocalEslrcFile,
|
|
LocalTtmlFile,
|
|
LibreTranslate,
|
|
}
|
|
}
|