mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 04:50:29 +08:00
21 lines
322 B
C#
21 lines
322 B
C#
using System.ComponentModel;
|
|
|
|
namespace Jellyfin.Plugin.MetaTube.Translation;
|
|
|
|
public enum TranslationEngine
|
|
{
|
|
[Description("Baidu")]
|
|
Baidu,
|
|
|
|
[Description("Google")]
|
|
Google,
|
|
|
|
[Description("Google (Free)")]
|
|
GoogleFree,
|
|
|
|
[Description("DeepL")]
|
|
DeepL,
|
|
|
|
[Description("OpenAI")]
|
|
OpenAi
|
|
} |