KnownEndpointNames.cs 537 B

1234567891011121314151617181920
  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. public const string WatsonTranslate = "WatsonTranslate";
  14. }
  15. }