12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace XUnity.AutoTranslator.Plugin.Core.Constants
- {
- public static class KnownEndpointNames
- {
- public const string GoogleTranslateLegacy = "GoogleTranslateLegacy";
- public const string GoogleTranslateHack = "GoogleTranslateHack";
- public const string BaiduTranslate = "BaiduTranslate";
- public const string YandexTranslate = "YandexTranslate";
- public const string WatsonTranslate = "WatsonTranslate";
- public const string ExciteTranslate = "ExciteTranslate";
- }
- }
|