KnownEndpointNames.cs 473 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XUnity.AutoTranslator.Plugin.Core.Constants
  6. {
  7. public static class KnownEndpointNames
  8. {
  9. public const string GoogleTranslateLegacy = "GoogleTranslateLegacy";
  10. public const string GoogleTranslateHack = "GoogleTranslateHack";
  11. public const string BaiduTranslate = "BaiduTranslate";
  12. public const string YandexTranslate = "YandexTranslate";
  13. }
  14. }