1234567891011121314151617181920 |
- 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";
- }
- }
|